Search in sources :

Example 16 with Icon$JAXB.writeIcon

use of org.apache.openejb.jee.Icon$JAXB.writeIcon 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 17 with Icon$JAXB.writeIcon

use of org.apache.openejb.jee.Icon$JAXB.writeIcon 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 18 with Icon$JAXB.writeIcon

use of org.apache.openejb.jee.Icon$JAXB.writeIcon in project tomee by apache.

the class TagFile$JAXB method _read.

public static final TagFile _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final TagFile tagFile = new TagFile();
    context.beforeUnmarshal(tagFile, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    ArrayList<Text> displayNames = null;
    LocalCollection<Icon> icon = null;
    List<TldExtension> tagExtension = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("tagFileType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, TagFile.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, tagFile);
            tagFile.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 = tagFile.icon;
                if (icon != null) {
                    icon.clear();
                } else {
                    icon = new LocalCollection<Icon>();
                }
            }
            icon.add(iconItem);
        } else if (("name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: name
            final String nameRaw = elementReader.getElementAsString();
            final String name;
            try {
                name = Adapters.collapsedStringAdapterAdapter.unmarshal(nameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tagFile.name = name;
        } else if (("path" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: path
            final String pathRaw = elementReader.getElementAsString();
            final String path;
            try {
                path = Adapters.collapsedStringAdapterAdapter.unmarshal(pathRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tagFile.path = path;
        } else if (("example" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: example
            final String exampleRaw = elementReader.getElementAsString();
            final String example;
            try {
                example = Adapters.collapsedStringAdapterAdapter.unmarshal(exampleRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tagFile.example = example;
        } else if (("tag-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: tagExtension
            final TldExtension tagExtensionItem = readTldExtension(elementReader, context);
            if (tagExtension == null) {
                tagExtension = tagFile.tagExtension;
                if (tagExtension != null) {
                    tagExtension.clear();
                } else {
                    tagExtension = new ArrayList<TldExtension>();
                }
            }
            tagExtension.add(tagExtensionItem);
        } 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", "name"), new QName("http://java.sun.com/xml/ns/javaee", "path"), new QName("http://java.sun.com/xml/ns/javaee", "example"), new QName("http://java.sun.com/xml/ns/javaee", "tag-extension"));
        }
    }
    if (descriptions != null) {
        try {
            tagFile.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, TagFile.class, "setDescriptions", Text[].class, e);
        }
    }
    if (displayNames != null) {
        try {
            tagFile.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
        } catch (final Exception e) {
            context.setterError(reader, TagFile.class, "setDisplayNames", Text[].class, e);
        }
    }
    if (icon != null) {
        tagFile.icon = icon;
    }
    if (tagExtension != null) {
        tagFile.tagExtension = tagExtension;
    }
    context.afterUnmarshal(tagFile, LifecycleCallback.NONE);
    return tagFile;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) ArrayList(java.util.ArrayList) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) TldExtension$JAXB.readTldExtension(org.apache.openejb.jee.TldExtension$JAXB.readTldExtension) TldExtension$JAXB.writeTldExtension(org.apache.openejb.jee.TldExtension$JAXB.writeTldExtension) 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 19 with Icon$JAXB.writeIcon

use of org.apache.openejb.jee.Icon$JAXB.writeIcon in project tomee by apache.

the class TldTaglib$JAXB method _read.

public static final TldTaglib _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final TldTaglib tldTaglib = new TldTaglib();
    context.beforeUnmarshal(tldTaglib, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    ArrayList<Text> displayNames = null;
    LocalCollection<Icon> icon = null;
    List<Listener> listener = null;
    List<Tag> tag = null;
    List<TagFile> tagFile = null;
    List<Function> function = null;
    List<TldExtension> taglibExtension = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("tldTaglibType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, TldTaglib.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, tldTaglib);
            tldTaglib.id = id;
        } else if (("version" == attribute.getLocalName()) && (("" == attribute.getNamespace()) || (attribute.getNamespace() == null))) {
            // ATTRIBUTE: version
            tldTaglib.version = Adapters.collapsedStringAdapterAdapter.unmarshal(attribute.getValue());
        } else if (XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI != attribute.getNamespace()) {
            context.unexpectedAttribute(attribute, new QName("", "id"), new QName("", "version"));
        }
    }
    // 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 = tldTaglib.icon;
                if (icon != null) {
                    icon.clear();
                } else {
                    icon = new LocalCollection<Icon>();
                }
            }
            icon.add(iconItem);
        } else if (("tlib-version" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: tlibVersion
            final String tlibVersionRaw = elementReader.getElementAsString();
            final String tlibVersion;
            try {
                tlibVersion = Adapters.collapsedStringAdapterAdapter.unmarshal(tlibVersionRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tldTaglib.tlibVersion = tlibVersion;
        } else if (("jsp-version" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: jspVersion
            final String jspVersionRaw = elementReader.getElementAsString();
            final String jspVersion;
            try {
                jspVersion = Adapters.collapsedStringAdapterAdapter.unmarshal(jspVersionRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tldTaglib.jspVersion = jspVersion;
        } else if (("short-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: shortName
            final String shortNameRaw = elementReader.getElementAsString();
            final String shortName;
            try {
                shortName = Adapters.collapsedStringAdapterAdapter.unmarshal(shortNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tldTaglib.shortName = shortName;
        } else if (("uri" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: uri
            final String uriRaw = elementReader.getElementAsString();
            final String uri;
            try {
                uri = Adapters.collapsedStringAdapterAdapter.unmarshal(uriRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tldTaglib.uri = uri;
        } else if (("validator" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: validator
            final Validator validator = readValidator(elementReader, context);
            tldTaglib.validator = validator;
        } else if (("listener" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: listener
            final Listener listenerItem = readListener(elementReader, context);
            if (listener == null) {
                listener = tldTaglib.listener;
                if (listener != null) {
                    listener.clear();
                } else {
                    listener = new ArrayList<Listener>();
                }
            }
            listener.add(listenerItem);
        } else if (("tag" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: tag
            final Tag tagItem = readTag(elementReader, context);
            if (tag == null) {
                tag = tldTaglib.tag;
                if (tag != null) {
                    tag.clear();
                } else {
                    tag = new ArrayList<Tag>();
                }
            }
            tag.add(tagItem);
        } else if (("tag-file" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: tagFile
            final TagFile tagFileItem = readTagFile(elementReader, context);
            if (tagFile == null) {
                tagFile = tldTaglib.tagFile;
                if (tagFile != null) {
                    tagFile.clear();
                } else {
                    tagFile = new ArrayList<TagFile>();
                }
            }
            tagFile.add(tagFileItem);
        } else if (("function" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: function
            final Function functionItem = readFunction(elementReader, context);
            if (function == null) {
                function = tldTaglib.function;
                if (function != null) {
                    function.clear();
                } else {
                    function = new ArrayList<Function>();
                }
            }
            function.add(functionItem);
        } else if (("taglib-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: taglibExtension
            final TldExtension taglibExtensionItem = readTldExtension(elementReader, context);
            if (taglibExtension == null) {
                taglibExtension = tldTaglib.taglibExtension;
                if (taglibExtension != null) {
                    taglibExtension.clear();
                } else {
                    taglibExtension = new ArrayList<TldExtension>();
                }
            }
            taglibExtension.add(taglibExtensionItem);
        }
    /* else { // we are not the one responsible of the failure so don't fail
                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", "tlib-version"), new QName("http://java.sun.com/xml/ns/javaee", "jsp-version"), new QName("http://java.sun.com/xml/ns/javaee", "short-name"), new QName("http://java.sun.com/xml/ns/javaee", "uri"), new QName("http://java.sun.com/xml/ns/javaee", "validator"), new QName("http://java.sun.com/xml/ns/javaee", "listener"), new QName("http://java.sun.com/xml/ns/javaee", "tag"), new QName("http://java.sun.com/xml/ns/javaee", "tag-file"), new QName("http://java.sun.com/xml/ns/javaee", "function"), new QName("http://java.sun.com/xml/ns/javaee", "taglib-extension"));
            }*/
    }
    if (descriptions != null) {
        try {
            tldTaglib.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, TldTaglib.class, "setDescriptions", Text[].class, e);
        }
    }
    if (displayNames != null) {
        try {
            tldTaglib.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
        } catch (final Exception e) {
            context.setterError(reader, TldTaglib.class, "setDisplayNames", Text[].class, e);
        }
    }
    if (icon != null) {
        tldTaglib.icon = icon;
    }
    if (listener != null) {
        tldTaglib.listener = listener;
    }
    if (tag != null) {
        tldTaglib.tag = tag;
    }
    if (tagFile != null) {
        tldTaglib.tagFile = tagFile;
    }
    if (function != null) {
        tldTaglib.function = function;
    }
    if (taglibExtension != null) {
        tldTaglib.taglibExtension = taglibExtension;
    }
    context.afterUnmarshal(tldTaglib, LifecycleCallback.NONE);
    return tldTaglib;
}
Also used : Listener$JAXB.readListener(org.apache.openejb.jee.Listener$JAXB.readListener) Listener$JAXB.writeListener(org.apache.openejb.jee.Listener$JAXB.writeListener) Attribute(org.metatype.sxc.util.Attribute) TagFile$JAXB.readTagFile(org.apache.openejb.jee.TagFile$JAXB.readTagFile) TagFile$JAXB.writeTagFile(org.apache.openejb.jee.TagFile$JAXB.writeTagFile) ArrayList(java.util.ArrayList) Function$JAXB.readFunction(org.apache.openejb.jee.Function$JAXB.readFunction) Function$JAXB.writeFunction(org.apache.openejb.jee.Function$JAXB.writeFunction) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader) CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) QName(javax.xml.namespace.QName) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) TldExtension$JAXB.readTldExtension(org.apache.openejb.jee.TldExtension$JAXB.readTldExtension) TldExtension$JAXB.writeTldExtension(org.apache.openejb.jee.TldExtension$JAXB.writeTldExtension) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) Tag$JAXB.readTag(org.apache.openejb.jee.Tag$JAXB.readTag) Tag$JAXB.writeTag(org.apache.openejb.jee.Tag$JAXB.writeTag) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) Validator$JAXB.readValidator(org.apache.openejb.jee.Validator$JAXB.readValidator) Validator$JAXB.writeValidator(org.apache.openejb.jee.Validator$JAXB.writeValidator)

Example 20 with Icon$JAXB.writeIcon

use of org.apache.openejb.jee.Icon$JAXB.writeIcon in project tomee by apache.

the class TldTaglib$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final TldTaglib tldTaglib, RuntimeContext context) throws Exception {
    if (tldTaglib == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (TldTaglib.class != tldTaglib.getClass()) {
        context.unexpectedSubclass(writer, tldTaglib, TldTaglib.class);
        return;
    }
    context.beforeMarshal(tldTaglib, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = tldTaglib.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(tldTaglib, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ATTRIBUTE: version
    final String versionRaw = tldTaglib.version;
    if (versionRaw != null) {
        String version = null;
        try {
            version = Adapters.collapsedStringAdapterAdapter.marshal(versionRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(tldTaglib, "version", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "version", version);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = tldTaglib.getDescriptions();
    } catch (final Exception e) {
        context.getterError(tldTaglib, "descriptions", TldTaglib.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(tldTaglib, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = tldTaglib.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(tldTaglib, "displayNames", TldTaglib.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(tldTaglib, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = tldTaglib.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(tldTaglib, "icon");
            }
        }
    }
    // ELEMENT: tlibVersion
    final String tlibVersionRaw = tldTaglib.tlibVersion;
    String tlibVersion = null;
    try {
        tlibVersion = Adapters.collapsedStringAdapterAdapter.marshal(tlibVersionRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tldTaglib, "tlibVersion", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (tlibVersion != null) {
        writer.writeStartElement(prefix, "tlib-version", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(tlibVersion);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(tldTaglib, "tlibVersion");
    }
    // ELEMENT: jspVersion
    final String jspVersionRaw = tldTaglib.jspVersion;
    String jspVersion = null;
    try {
        jspVersion = Adapters.collapsedStringAdapterAdapter.marshal(jspVersionRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tldTaglib, "jspVersion", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (jspVersion != null) {
        writer.writeStartElement(prefix, "jsp-version", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(jspVersion);
        writer.writeEndElement();
    }
    // ELEMENT: shortName
    final String shortNameRaw = tldTaglib.shortName;
    String shortName = null;
    try {
        shortName = Adapters.collapsedStringAdapterAdapter.marshal(shortNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tldTaglib, "shortName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (shortName != null) {
        writer.writeStartElement(prefix, "short-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(shortName);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(tldTaglib, "shortName");
    }
    // ELEMENT: uri
    final String uriRaw = tldTaglib.uri;
    String uri = null;
    try {
        uri = Adapters.collapsedStringAdapterAdapter.marshal(uriRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tldTaglib, "uri", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (uri != null) {
        writer.writeStartElement(prefix, "uri", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(uri);
        writer.writeEndElement();
    }
    // ELEMENT: validator
    final Validator validator = tldTaglib.validator;
    if (validator != null) {
        writer.writeStartElement(prefix, "validator", "http://java.sun.com/xml/ns/javaee");
        writeValidator(writer, validator, context);
        writer.writeEndElement();
    }
    // ELEMENT: listener
    final List<Listener> listener = tldTaglib.listener;
    if (listener != null) {
        for (final Listener listenerItem : listener) {
            writer.writeStartElement(prefix, "listener", "http://java.sun.com/xml/ns/javaee");
            if (listenerItem != null) {
                writeListener(writer, listenerItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: tag
    final List<Tag> tag = tldTaglib.tag;
    if (tag != null) {
        for (final Tag tagItem : tag) {
            writer.writeStartElement(prefix, "tag", "http://java.sun.com/xml/ns/javaee");
            if (tagItem != null) {
                writeTag(writer, tagItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: tagFile
    final List<TagFile> tagFile = tldTaglib.tagFile;
    if (tagFile != null) {
        for (final TagFile tagFileItem : tagFile) {
            if (tagFileItem != null) {
                writer.writeStartElement(prefix, "tag-file", "http://java.sun.com/xml/ns/javaee");
                writeTagFile(writer, tagFileItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: function
    final List<Function> function = tldTaglib.function;
    if (function != null) {
        for (final Function functionItem : function) {
            writer.writeStartElement(prefix, "function", "http://java.sun.com/xml/ns/javaee");
            if (functionItem != null) {
                writeFunction(writer, functionItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: taglibExtension
    final List<TldExtension> taglibExtension = tldTaglib.taglibExtension;
    if (taglibExtension != null) {
        for (final TldExtension taglibExtensionItem : taglibExtension) {
            if (taglibExtensionItem != null) {
                writer.writeStartElement(prefix, "taglib-extension", "http://java.sun.com/xml/ns/javaee");
                writeTldExtension(writer, taglibExtensionItem, context);
                writer.writeEndElement();
            }
        }
    }
    context.afterMarshal(tldTaglib, LifecycleCallback.NONE);
}
Also used : Listener$JAXB.readListener(org.apache.openejb.jee.Listener$JAXB.readListener) Listener$JAXB.writeListener(org.apache.openejb.jee.Listener$JAXB.writeListener) CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) TagFile$JAXB.readTagFile(org.apache.openejb.jee.TagFile$JAXB.readTagFile) TagFile$JAXB.writeTagFile(org.apache.openejb.jee.TagFile$JAXB.writeTagFile) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) Function$JAXB.readFunction(org.apache.openejb.jee.Function$JAXB.readFunction) Function$JAXB.writeFunction(org.apache.openejb.jee.Function$JAXB.writeFunction) TldExtension$JAXB.readTldExtension(org.apache.openejb.jee.TldExtension$JAXB.readTldExtension) TldExtension$JAXB.writeTldExtension(org.apache.openejb.jee.TldExtension$JAXB.writeTldExtension) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) Tag$JAXB.readTag(org.apache.openejb.jee.Tag$JAXB.readTag) Tag$JAXB.writeTag(org.apache.openejb.jee.Tag$JAXB.writeTag) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) Validator$JAXB.readValidator(org.apache.openejb.jee.Validator$JAXB.readValidator) Validator$JAXB.writeValidator(org.apache.openejb.jee.Validator$JAXB.writeValidator)

Aggregations

Icon$JAXB.readIcon (org.apache.openejb.jee.Icon$JAXB.readIcon)74 Icon$JAXB.writeIcon (org.apache.openejb.jee.Icon$JAXB.writeIcon)74 RuntimeContext (org.metatype.sxc.jaxb.RuntimeContext)74 CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)70 Text$JAXB.readText (org.apache.openejb.jee.Text$JAXB.readText)70 Text$JAXB.writeText (org.apache.openejb.jee.Text$JAXB.writeText)70 ArrayList (java.util.ArrayList)40 QName (javax.xml.namespace.QName)40 Attribute (org.metatype.sxc.util.Attribute)37 XoXMLStreamReader (org.metatype.sxc.util.XoXMLStreamReader)37 DataSource$JAXB.readDataSource (org.apache.openejb.jee.DataSource$JAXB.readDataSource)12 DataSource$JAXB.writeDataSource (org.apache.openejb.jee.DataSource$JAXB.writeDataSource)12 EjbLocalRef$JAXB.readEjbLocalRef (org.apache.openejb.jee.EjbLocalRef$JAXB.readEjbLocalRef)12 EjbLocalRef$JAXB.writeEjbLocalRef (org.apache.openejb.jee.EjbLocalRef$JAXB.writeEjbLocalRef)12 EjbRef$JAXB.readEjbRef (org.apache.openejb.jee.EjbRef$JAXB.readEjbRef)12 EjbRef$JAXB.writeEjbRef (org.apache.openejb.jee.EjbRef$JAXB.writeEjbRef)12 EnvEntry$JAXB.readEnvEntry (org.apache.openejb.jee.EnvEntry$JAXB.readEnvEntry)12 EnvEntry$JAXB.writeEnvEntry (org.apache.openejb.jee.EnvEntry$JAXB.writeEnvEntry)12 MessageDestinationRef$JAXB.readMessageDestinationRef (org.apache.openejb.jee.MessageDestinationRef$JAXB.readMessageDestinationRef)12 MessageDestinationRef$JAXB.writeMessageDestinationRef (org.apache.openejb.jee.MessageDestinationRef$JAXB.writeMessageDestinationRef)12