Search in sources :

Example 1 with ParamValue$JAXB.writeParamValue

use of org.apache.openejb.jee.ParamValue$JAXB.writeParamValue in project tomee by apache.

the class Servlet$JAXB method _read.

public static final Servlet _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final Servlet servlet = new Servlet();
    context.beforeUnmarshal(servlet, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    ArrayList<Text> displayNames = null;
    LocalCollection<Icon> icon = null;
    List<ParamValue> initParam = null;
    List<SecurityRoleRef> securityRoleRef = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("servletType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, Servlet.class);
        }
    }
    // Read attributes
    for (final Attribute attribute : reader.getAttributes()) {
        if (("id" == attribute.getLocalName()) && (("" == attribute.getNamespace()) || (attribute.getNamespace() == null))) {
            // ATTRIBUTE: id
            final String id = Adapters.collapsedStringAdapterAdapter.unmarshal(attribute.getValue());
            context.addXmlId(reader, id, servlet);
            servlet.id = id;
        } else if (XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI != attribute.getNamespace()) {
            context.unexpectedAttribute(attribute, new QName("", "id"));
        }
    }
    // Read elements
    for (final XoXMLStreamReader elementReader : reader.getChildElements()) {
        if (("description" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: descriptions
            final Text descriptionsItem = readText(elementReader, context);
            if (descriptions == null) {
                descriptions = new ArrayList<Text>();
            }
            descriptions.add(descriptionsItem);
        } else if (("display-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: displayNames
            final Text displayNamesItem = readText(elementReader, context);
            if (displayNames == null) {
                displayNames = new ArrayList<Text>();
            }
            displayNames.add(displayNamesItem);
        } else if (("icon" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: icon
            final Icon iconItem = readIcon(elementReader, context);
            if (icon == null) {
                icon = servlet.icon;
                if (icon != null) {
                    icon.clear();
                } else {
                    icon = new LocalCollection<Icon>();
                }
            }
            icon.add(iconItem);
        } else if (("servlet-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: servletName
            final String servletNameRaw = elementReader.getElementAsString();
            final String servletName;
            try {
                servletName = Adapters.collapsedStringAdapterAdapter.unmarshal(servletNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            servlet.servletName = servletName;
        } else if (("servlet-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: servletClass
            final String servletClassRaw = elementReader.getElementAsString();
            final String servletClass;
            try {
                servletClass = Adapters.collapsedStringAdapterAdapter.unmarshal(servletClassRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            servlet.servletClass = servletClass;
        } else if (("jsp-file" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: jspFile
            final String jspFileRaw = elementReader.getElementAsString();
            final String jspFile;
            try {
                jspFile = Adapters.collapsedStringAdapterAdapter.unmarshal(jspFileRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            servlet.jspFile = jspFile;
        } else if (("init-param" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: initParam
            final ParamValue initParamItem = readParamValue(elementReader, context);
            if (initParam == null) {
                initParam = servlet.initParam;
                if (initParam != null) {
                    initParam.clear();
                } else {
                    initParam = new ArrayList<ParamValue>();
                }
            }
            initParam.add(initParamItem);
        } else if (("load-on-startup" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: loadOnStartup
            final String loadOnStartupRaw = elementReader.getElementAsString();
            final Integer loadOnStartup;
            try {
                loadOnStartup = Adapters.loadOnStartupAdapterAdapter.unmarshal(loadOnStartupRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, LoadOnStartupAdapter.class, Integer.class, Integer.class, e);
                continue;
            }
            servlet.loadOnStartup = loadOnStartup;
        } else if (("enabled" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: enabled
            final Boolean enabled = ("1".equals(elementReader.getElementAsString()) || "true".equals(elementReader.getElementAsString()));
            servlet.enabled = enabled;
        } else if (("async-supported" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: asyncSupported
            final Boolean asyncSupported = ("1".equals(elementReader.getElementAsString()) || "true".equals(elementReader.getElementAsString()));
            servlet.asyncSupported = asyncSupported;
        } else if (("run-as" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: runAs
            final RunAs runAs = readRunAs(elementReader, context);
            servlet.runAs = runAs;
        } else if (("security-role-ref" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: securityRoleRef
            final SecurityRoleRef securityRoleRefItem = readSecurityRoleRef(elementReader, context);
            if (securityRoleRef == null) {
                securityRoleRef = servlet.securityRoleRef;
                if (securityRoleRef != null) {
                    securityRoleRef.clear();
                } else {
                    securityRoleRef = new ArrayList<SecurityRoleRef>();
                }
            }
            securityRoleRef.add(securityRoleRefItem);
        } else if (("multipart-config" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: multipartConfig
            final MultipartConfig multipartConfig = readMultipartConfig(elementReader, context);
            servlet.multipartConfig = multipartConfig;
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "description"), new QName("http://java.sun.com/xml/ns/javaee", "display-name"), new QName("http://java.sun.com/xml/ns/javaee", "icon"), new QName("http://java.sun.com/xml/ns/javaee", "servlet-name"), new QName("http://java.sun.com/xml/ns/javaee", "servlet-class"), new QName("http://java.sun.com/xml/ns/javaee", "jsp-file"), new QName("http://java.sun.com/xml/ns/javaee", "init-param"), new QName("http://java.sun.com/xml/ns/javaee", "load-on-startup"), new QName("http://java.sun.com/xml/ns/javaee", "enabled"), new QName("http://java.sun.com/xml/ns/javaee", "async-supported"), new QName("http://java.sun.com/xml/ns/javaee", "run-as"), new QName("http://java.sun.com/xml/ns/javaee", "security-role-ref"), new QName("http://java.sun.com/xml/ns/javaee", "multipart-config"));
        }
    }
    if (descriptions != null) {
        try {
            servlet.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, Servlet.class, "setDescriptions", Text[].class, e);
        }
    }
    if (displayNames != null) {
        try {
            servlet.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
        } catch (final Exception e) {
            context.setterError(reader, Servlet.class, "setDisplayNames", Text[].class, e);
        }
    }
    if (icon != null) {
        servlet.icon = icon;
    }
    if (initParam != null) {
        servlet.initParam = initParam;
    }
    if (securityRoleRef != null) {
        servlet.securityRoleRef = securityRoleRef;
    }
    context.afterUnmarshal(servlet, LifecycleCallback.NONE);
    return servlet;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) RunAs$JAXB.writeRunAs(org.apache.openejb.jee.RunAs$JAXB.writeRunAs) RunAs$JAXB.readRunAs(org.apache.openejb.jee.RunAs$JAXB.readRunAs) ArrayList(java.util.ArrayList) ParamValue$JAXB.readParamValue(org.apache.openejb.jee.ParamValue$JAXB.readParamValue) ParamValue$JAXB.writeParamValue(org.apache.openejb.jee.ParamValue$JAXB.writeParamValue) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) SecurityRoleRef$JAXB.writeSecurityRoleRef(org.apache.openejb.jee.SecurityRoleRef$JAXB.writeSecurityRoleRef) SecurityRoleRef$JAXB.readSecurityRoleRef(org.apache.openejb.jee.SecurityRoleRef$JAXB.readSecurityRoleRef) MultipartConfig$JAXB.readMultipartConfig(org.apache.openejb.jee.MultipartConfig$JAXB.readMultipartConfig) MultipartConfig$JAXB.writeMultipartConfig(org.apache.openejb.jee.MultipartConfig$JAXB.writeMultipartConfig) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 2 with ParamValue$JAXB.writeParamValue

use of org.apache.openejb.jee.ParamValue$JAXB.writeParamValue in project tomee by apache.

the class Servlet$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final Servlet servlet, RuntimeContext context) throws Exception {
    if (servlet == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (Servlet.class != servlet.getClass()) {
        context.unexpectedSubclass(writer, servlet, Servlet.class);
        return;
    }
    context.beforeMarshal(servlet, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = servlet.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(servlet, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = servlet.getDescriptions();
    } catch (final Exception e) {
        context.getterError(servlet, "descriptions", Servlet.class, "getDescriptions", e);
    }
    if (descriptions != null) {
        for (final Text descriptionsItem : descriptions) {
            if (descriptionsItem != null) {
                writer.writeStartElement(prefix, "description", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, descriptionsItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(servlet, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = servlet.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(servlet, "displayNames", Servlet.class, "getDisplayNames", e);
    }
    if (displayNames != null) {
        for (final Text displayNamesItem : displayNames) {
            if (displayNamesItem != null) {
                writer.writeStartElement(prefix, "display-name", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, displayNamesItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(servlet, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = servlet.icon;
    if (icon != null) {
        for (final Icon iconItem : icon) {
            if (iconItem != null) {
                writer.writeStartElement(prefix, "icon", "http://java.sun.com/xml/ns/javaee");
                writeIcon(writer, iconItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(servlet, "icon");
            }
        }
    }
    // ELEMENT: servletName
    final String servletNameRaw = servlet.servletName;
    String servletName = null;
    try {
        servletName = Adapters.collapsedStringAdapterAdapter.marshal(servletNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(servlet, "servletName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (servletName != null) {
        writer.writeStartElement(prefix, "servlet-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(servletName);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(servlet, "servletName");
    }
    // ELEMENT: servletClass
    final String servletClassRaw = servlet.servletClass;
    String servletClass = null;
    try {
        servletClass = Adapters.collapsedStringAdapterAdapter.marshal(servletClassRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(servlet, "servletClass", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (servletClass != null) {
        writer.writeStartElement(prefix, "servlet-class", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(servletClass);
        writer.writeEndElement();
    }
    // ELEMENT: jspFile
    final String jspFileRaw = servlet.jspFile;
    String jspFile = null;
    try {
        jspFile = Adapters.collapsedStringAdapterAdapter.marshal(jspFileRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(servlet, "jspFile", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (jspFile != null) {
        writer.writeStartElement(prefix, "jsp-file", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(jspFile);
        writer.writeEndElement();
    }
    // ELEMENT: initParam
    final List<ParamValue> initParam = servlet.initParam;
    if (initParam != null) {
        for (final ParamValue initParamItem : initParam) {
            if (initParamItem != null) {
                writer.writeStartElement(prefix, "init-param", "http://java.sun.com/xml/ns/javaee");
                writeParamValue(writer, initParamItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: loadOnStartup
    final Integer loadOnStartupRaw = servlet.loadOnStartup;
    String loadOnStartup = null;
    try {
        loadOnStartup = Adapters.loadOnStartupAdapterAdapter.marshal(loadOnStartupRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(servlet, "loadOnStartup", LoadOnStartupAdapter.class, Integer.class, Integer.class, e);
    }
    if (loadOnStartup != null) {
        writer.writeStartElement(prefix, "load-on-startup", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(loadOnStartup);
        writer.writeEndElement();
    }
    // ELEMENT: enabled
    final Boolean enabled = servlet.enabled;
    if (enabled != null) {
        writer.writeStartElement(prefix, "enabled", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(Boolean.toString(enabled));
        writer.writeEndElement();
    }
    // ELEMENT: asyncSupported
    final Boolean asyncSupported = servlet.asyncSupported;
    if (asyncSupported != null) {
        writer.writeStartElement(prefix, "async-supported", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(Boolean.toString(asyncSupported));
        writer.writeEndElement();
    }
    // ELEMENT: runAs
    final RunAs runAs = servlet.runAs;
    if (runAs != null) {
        writer.writeStartElement(prefix, "run-as", "http://java.sun.com/xml/ns/javaee");
        writeRunAs(writer, runAs, context);
        writer.writeEndElement();
    }
    // ELEMENT: securityRoleRef
    final List<SecurityRoleRef> securityRoleRef = servlet.securityRoleRef;
    if (securityRoleRef != null) {
        for (final SecurityRoleRef securityRoleRefItem : securityRoleRef) {
            if (securityRoleRefItem != null) {
                writer.writeStartElement(prefix, "security-role-ref", "http://java.sun.com/xml/ns/javaee");
                writeSecurityRoleRef(writer, securityRoleRefItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: multipartConfig
    final MultipartConfig multipartConfig = servlet.multipartConfig;
    if (multipartConfig != null) {
        writer.writeStartElement(prefix, "multipart-config", "http://java.sun.com/xml/ns/javaee");
        writeMultipartConfig(writer, multipartConfig, context);
        writer.writeEndElement();
    }
    context.afterMarshal(servlet, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) RunAs$JAXB.writeRunAs(org.apache.openejb.jee.RunAs$JAXB.writeRunAs) RunAs$JAXB.readRunAs(org.apache.openejb.jee.RunAs$JAXB.readRunAs) ParamValue$JAXB.readParamValue(org.apache.openejb.jee.ParamValue$JAXB.readParamValue) ParamValue$JAXB.writeParamValue(org.apache.openejb.jee.ParamValue$JAXB.writeParamValue) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) SecurityRoleRef$JAXB.writeSecurityRoleRef(org.apache.openejb.jee.SecurityRoleRef$JAXB.writeSecurityRoleRef) SecurityRoleRef$JAXB.readSecurityRoleRef(org.apache.openejb.jee.SecurityRoleRef$JAXB.readSecurityRoleRef) MultipartConfig$JAXB.readMultipartConfig(org.apache.openejb.jee.MultipartConfig$JAXB.readMultipartConfig) MultipartConfig$JAXB.writeMultipartConfig(org.apache.openejb.jee.MultipartConfig$JAXB.writeMultipartConfig) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Example 3 with ParamValue$JAXB.writeParamValue

use of org.apache.openejb.jee.ParamValue$JAXB.writeParamValue in project tomee by apache.

the class Validator$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final Validator validator, RuntimeContext context) throws Exception {
    if (validator == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (Validator.class != validator.getClass()) {
        context.unexpectedSubclass(writer, validator, Validator.class);
        return;
    }
    context.beforeMarshal(validator, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = validator.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(validator, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = validator.getDescriptions();
    } catch (final Exception e) {
        context.getterError(validator, "descriptions", Validator.class, "getDescriptions", e);
    }
    if (descriptions != null) {
        for (final Text descriptionsItem : descriptions) {
            if (descriptionsItem != null) {
                writer.writeStartElement(prefix, "description", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, descriptionsItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(validator, "descriptions");
            }
        }
    }
    // ELEMENT: validatorClass
    final String validatorClassRaw = validator.validatorClass;
    String validatorClass = null;
    try {
        validatorClass = Adapters.collapsedStringAdapterAdapter.marshal(validatorClassRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(validator, "validatorClass", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (validatorClass != null) {
        writer.writeStartElement(prefix, "validator-class", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(validatorClass);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(validator, "validatorClass");
    }
    // ELEMENT: initParam
    final List<ParamValue> initParam = validator.initParam;
    if (initParam != null) {
        for (final ParamValue initParamItem : initParam) {
            if (initParamItem != null) {
                writer.writeStartElement(prefix, "init-param", "http://java.sun.com/xml/ns/javaee");
                writeParamValue(writer, initParamItem, context);
                writer.writeEndElement();
            }
        }
    }
    context.afterMarshal(validator, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) ParamValue$JAXB.readParamValue(org.apache.openejb.jee.ParamValue$JAXB.readParamValue) ParamValue$JAXB.writeParamValue(org.apache.openejb.jee.ParamValue$JAXB.writeParamValue) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Example 4 with ParamValue$JAXB.writeParamValue

use of org.apache.openejb.jee.ParamValue$JAXB.writeParamValue in project tomee by apache.

the class Handler$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final Handler handler, RuntimeContext context) throws Exception {
    if (handler == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (Handler.class != handler.getClass()) {
        context.unexpectedSubclass(writer, handler, Handler.class);
        return;
    }
    context.beforeMarshal(handler, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = handler.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(handler, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = handler.getDescriptions();
    } catch (final Exception e) {
        context.getterError(handler, "descriptions", Handler.class, "getDescriptions", e);
    }
    if (descriptions != null) {
        for (final Text descriptionsItem : descriptions) {
            if (descriptionsItem != null) {
                writer.writeStartElement(prefix, "description", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, descriptionsItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(handler, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = handler.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(handler, "displayNames", Handler.class, "getDisplayNames", e);
    }
    if (displayNames != null) {
        for (final Text displayNamesItem : displayNames) {
            if (displayNamesItem != null) {
                writer.writeStartElement(prefix, "display-name", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, displayNamesItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(handler, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = handler.icon;
    if (icon != null) {
        for (final Icon iconItem : icon) {
            if (iconItem != null) {
                writer.writeStartElement(prefix, "icon", "http://java.sun.com/xml/ns/javaee");
                writeIcon(writer, iconItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: handlerName
    final String handlerNameRaw = handler.handlerName;
    String handlerName = null;
    try {
        handlerName = Adapters.collapsedStringAdapterAdapter.marshal(handlerNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(handler, "handlerName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (handlerName != null) {
        writer.writeStartElement(prefix, "handler-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(handlerName);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(handler, "handlerName");
    }
    // ELEMENT: handlerClass
    final String handlerClassRaw = handler.handlerClass;
    String handlerClass = null;
    try {
        handlerClass = Adapters.collapsedStringAdapterAdapter.marshal(handlerClassRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(handler, "handlerClass", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (handlerClass != null) {
        writer.writeStartElement(prefix, "handler-class", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(handlerClass);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(handler, "handlerClass");
    }
    // ELEMENT: initParam
    final List<ParamValue> initParam = handler.initParam;
    if (initParam != null) {
        for (final ParamValue initParamItem : initParam) {
            if (initParamItem != null) {
                writer.writeStartElement(prefix, "init-param", "http://java.sun.com/xml/ns/javaee");
                writeParamValue(writer, initParamItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: soapHeader
    final List<QName> soapHeader = handler.soapHeader;
    if (soapHeader != null) {
        for (final QName soapHeaderItem : soapHeader) {
            if (soapHeaderItem != null) {
                writer.writeStartElement(prefix, "soap-header", "http://java.sun.com/xml/ns/javaee");
                writer.writeQName(soapHeaderItem);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: soapRole
    final List<String> soapRoleRaw = handler.soapRole;
    if (soapRoleRaw != null) {
        for (final String soapRoleItem : soapRoleRaw) {
            String soapRole = null;
            try {
                soapRole = Adapters.collapsedStringAdapterAdapter.marshal(soapRoleItem);
            } catch (final Exception e) {
                context.xmlAdapterError(handler, "soapRole", CollapsedStringAdapter.class, List.class, List.class, e);
            }
            if (soapRole != null) {
                writer.writeStartElement(prefix, "soap-role", "http://java.sun.com/xml/ns/javaee");
                writer.writeCharacters(soapRole);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: portName
    final List<String> portNameRaw = handler.portName;
    if (portNameRaw != null) {
        for (final String portNameItem : portNameRaw) {
            String portName = null;
            try {
                portName = Adapters.collapsedStringAdapterAdapter.marshal(portNameItem);
            } catch (final Exception e) {
                context.xmlAdapterError(handler, "portName", CollapsedStringAdapter.class, List.class, List.class, e);
            }
            if (portName != null) {
                writer.writeStartElement(prefix, "port-name", "http://java.sun.com/xml/ns/javaee");
                writer.writeCharacters(portName);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(handler, "portName");
            }
        }
    }
    context.afterMarshal(handler, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) QName(javax.xml.namespace.QName) ParamValue$JAXB.readParamValue(org.apache.openejb.jee.ParamValue$JAXB.readParamValue) ParamValue$JAXB.writeParamValue(org.apache.openejb.jee.ParamValue$JAXB.writeParamValue) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) ArrayList(java.util.ArrayList) List(java.util.List) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Example 5 with ParamValue$JAXB.writeParamValue

use of org.apache.openejb.jee.ParamValue$JAXB.writeParamValue in project tomee by apache.

the class Filter$JAXB method _read.

public static final Filter _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final Filter filter = new Filter();
    context.beforeUnmarshal(filter, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    ArrayList<Text> displayNames = null;
    LocalCollection<Icon> icon = null;
    List<ParamValue> initParam = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("filterType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, Filter.class);
        }
    }
    // Read attributes
    for (final Attribute attribute : reader.getAttributes()) {
        if (("id" == attribute.getLocalName()) && (("" == attribute.getNamespace()) || (attribute.getNamespace() == null))) {
            // ATTRIBUTE: id
            final String id = Adapters.collapsedStringAdapterAdapter.unmarshal(attribute.getValue());
            context.addXmlId(reader, id, filter);
            filter.id = id;
        } else if (XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI != attribute.getNamespace()) {
            context.unexpectedAttribute(attribute, new QName("", "id"));
        }
    }
    // Read elements
    for (final XoXMLStreamReader elementReader : reader.getChildElements()) {
        if (("description" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: descriptions
            final Text descriptionsItem = readText(elementReader, context);
            if (descriptions == null) {
                descriptions = new ArrayList<Text>();
            }
            descriptions.add(descriptionsItem);
        } else if (("display-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: displayNames
            final Text displayNamesItem = readText(elementReader, context);
            if (displayNames == null) {
                displayNames = new ArrayList<Text>();
            }
            displayNames.add(displayNamesItem);
        } else if (("icon" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: icon
            final Icon iconItem = readIcon(elementReader, context);
            if (icon == null) {
                icon = filter.icon;
                if (icon != null) {
                    icon.clear();
                } else {
                    icon = new LocalCollection<Icon>();
                }
            }
            icon.add(iconItem);
        } else if (("filter-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: filterName
            final String filterNameRaw = elementReader.getElementAsString();
            final String filterName;
            try {
                filterName = Adapters.collapsedStringAdapterAdapter.unmarshal(filterNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            filter.filterName = filterName;
        } else if (("filter-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: filterClass
            final String filterClassRaw = elementReader.getElementAsString();
            final String filterClass;
            try {
                filterClass = Adapters.collapsedStringAdapterAdapter.unmarshal(filterClassRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            filter.filterClass = filterClass;
        } else if (("async-supported" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: asyncSupported
            final Boolean asyncSupported = ("1".equals(elementReader.getElementAsString()) || "true".equals(elementReader.getElementAsString()));
            filter.asyncSupported = asyncSupported;
        } else if (("init-param" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: initParam
            final ParamValue initParamItem = readParamValue(elementReader, context);
            if (initParam == null) {
                initParam = filter.initParam;
                if (initParam != null) {
                    initParam.clear();
                } else {
                    initParam = new ArrayList<ParamValue>();
                }
            }
            initParam.add(initParamItem);
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "description"), new QName("http://java.sun.com/xml/ns/javaee", "display-name"), new QName("http://java.sun.com/xml/ns/javaee", "icon"), new QName("http://java.sun.com/xml/ns/javaee", "filter-name"), new QName("http://java.sun.com/xml/ns/javaee", "filter-class"), new QName("http://java.sun.com/xml/ns/javaee", "async-supported"), new QName("http://java.sun.com/xml/ns/javaee", "init-param"));
        }
    }
    if (descriptions != null) {
        try {
            filter.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, Filter.class, "setDescriptions", Text[].class, e);
        }
    }
    if (displayNames != null) {
        try {
            filter.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
        } catch (final Exception e) {
            context.setterError(reader, Filter.class, "setDisplayNames", Text[].class, e);
        }
    }
    if (icon != null) {
        filter.icon = icon;
    }
    if (initParam != null) {
        filter.initParam = initParam;
    }
    context.afterUnmarshal(filter, LifecycleCallback.NONE);
    return filter;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) ArrayList(java.util.ArrayList) ParamValue$JAXB.readParamValue(org.apache.openejb.jee.ParamValue$JAXB.readParamValue) ParamValue$JAXB.writeParamValue(org.apache.openejb.jee.ParamValue$JAXB.writeParamValue) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Aggregations

ParamValue$JAXB.readParamValue (org.apache.openejb.jee.ParamValue$JAXB.readParamValue)10 ParamValue$JAXB.writeParamValue (org.apache.openejb.jee.ParamValue$JAXB.writeParamValue)10 Text$JAXB.readText (org.apache.openejb.jee.Text$JAXB.readText)10 Text$JAXB.writeText (org.apache.openejb.jee.Text$JAXB.writeText)10 RuntimeContext (org.metatype.sxc.jaxb.RuntimeContext)10 CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)9 Icon$JAXB.readIcon (org.apache.openejb.jee.Icon$JAXB.readIcon)8 Icon$JAXB.writeIcon (org.apache.openejb.jee.Icon$JAXB.writeIcon)8 ArrayList (java.util.ArrayList)6 QName (javax.xml.namespace.QName)6 Attribute (org.metatype.sxc.util.Attribute)5 XoXMLStreamReader (org.metatype.sxc.util.XoXMLStreamReader)5 AbsoluteOrdering$JAXB.readAbsoluteOrdering (org.apache.openejb.jee.AbsoluteOrdering$JAXB.readAbsoluteOrdering)2 AbsoluteOrdering$JAXB.writeAbsoluteOrdering (org.apache.openejb.jee.AbsoluteOrdering$JAXB.writeAbsoluteOrdering)2 DataSource$JAXB.readDataSource (org.apache.openejb.jee.DataSource$JAXB.readDataSource)2 DataSource$JAXB.writeDataSource (org.apache.openejb.jee.DataSource$JAXB.writeDataSource)2 EjbLocalRef$JAXB.readEjbLocalRef (org.apache.openejb.jee.EjbLocalRef$JAXB.readEjbLocalRef)2 EjbLocalRef$JAXB.writeEjbLocalRef (org.apache.openejb.jee.EjbLocalRef$JAXB.writeEjbLocalRef)2 EjbRef$JAXB.readEjbRef (org.apache.openejb.jee.EjbRef$JAXB.readEjbRef)2 EjbRef$JAXB.writeEjbRef (org.apache.openejb.jee.EjbRef$JAXB.writeEjbRef)2