Search in sources :

Example 6 with Text$JAXB.writeText

use of org.apache.openejb.jee.Text$JAXB.writeText in project tomee by apache.

the class ConfigProperty$JAXB method _read.

public static final ConfigProperty _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final ConfigProperty configProperty = new ConfigProperty();
    context.beforeUnmarshal(configProperty, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("config-propertyType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, ConfigProperty.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, configProperty);
            configProperty.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 (("config-property-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: configPropertyName
            final String configPropertyNameRaw = elementReader.getElementAsString();
            final String configPropertyName;
            try {
                configPropertyName = Adapters.collapsedStringAdapterAdapter.unmarshal(configPropertyNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            configProperty.configPropertyName = configPropertyName;
        } else if (("config-property-type" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: configPropertyType
            final String configPropertyTypeRaw = elementReader.getElementAsString();
            final String configPropertyType;
            try {
                configPropertyType = Adapters.collapsedStringAdapterAdapter.unmarshal(configPropertyTypeRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            configProperty.configPropertyType = configPropertyType;
        } else if (("config-property-value" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: configPropertyValue
            final String configPropertyValueRaw = elementReader.getElementAsString();
            final String configPropertyValue;
            try {
                configPropertyValue = Adapters.collapsedStringAdapterAdapter.unmarshal(configPropertyValueRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            configProperty.configPropertyValue = configPropertyValue;
        } else if (("config-property-ignore" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: configPropertyIgnore
            final Boolean configPropertyIgnore = ("1".equals(elementReader.getElementAsString()) || "true".equals(elementReader.getElementAsString()));
            configProperty.configPropertyIgnore = configPropertyIgnore;
        } else if (("config-property-supports-dynamic-updates" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: configPropertySupportsDynamicUpdates
            final Boolean configPropertySupportsDynamicUpdates = ("1".equals(elementReader.getElementAsString()) || "true".equals(elementReader.getElementAsString()));
            configProperty.configPropertySupportsDynamicUpdates = configPropertySupportsDynamicUpdates;
        } else if (("config-property-confidential" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: configPropertyConfidential
            final Boolean configPropertyConfidential = ("1".equals(elementReader.getElementAsString()) || "true".equals(elementReader.getElementAsString()));
            configProperty.configPropertyConfidential = configPropertyConfidential;
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "description"), new QName("http://java.sun.com/xml/ns/javaee", "config-property-name"), new QName("http://java.sun.com/xml/ns/javaee", "config-property-type"), new QName("http://java.sun.com/xml/ns/javaee", "config-property-value"), new QName("http://java.sun.com/xml/ns/javaee", "config-property-ignore"), new QName("http://java.sun.com/xml/ns/javaee", "config-property-supports-dynamic-updates"), new QName("http://java.sun.com/xml/ns/javaee", "config-property-confidential"));
        }
    }
    if (descriptions != null) {
        try {
            configProperty.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, ConfigProperty.class, "setDescriptions", Text[].class, e);
        }
    }
    context.afterUnmarshal(configProperty, LifecycleCallback.NONE);
    return configProperty;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) 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) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 7 with Text$JAXB.writeText

use of org.apache.openejb.jee.Text$JAXB.writeText in project tomee by apache.

the class AuthConstraint$JAXB method _read.

public static final AuthConstraint _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final AuthConstraint authConstraint = new AuthConstraint();
    context.beforeUnmarshal(authConstraint, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    List<String> roleName = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("auth-constraintType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, AuthConstraint.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, authConstraint);
            authConstraint.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 (("role-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: roleName
            final String roleNameItemRaw = elementReader.getElementAsString();
            final String roleNameItem;
            try {
                roleNameItem = Adapters.collapsedStringAdapterAdapter.unmarshal(roleNameItemRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            if (roleName == null) {
                roleName = authConstraint.roleName;
                if (roleName != null) {
                    roleName.clear();
                } else {
                    roleName = new ArrayList<String>();
                }
            }
            roleName.add(roleNameItem);
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "description"), new QName("http://java.sun.com/xml/ns/javaee", "role-name"));
        }
    }
    if (descriptions != null) {
        try {
            authConstraint.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, AuthConstraint.class, "setDescriptions", Text[].class, e);
        }
    }
    if (roleName != null) {
        authConstraint.roleName = roleName;
    }
    context.afterUnmarshal(authConstraint, LifecycleCallback.NONE);
    return authConstraint;
}
Also used : 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) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 8 with Text$JAXB.writeText

use of org.apache.openejb.jee.Text$JAXB.writeText in project tomee by apache.

the class CmpField$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final CmpField cmpField, RuntimeContext context) throws Exception {
    if (cmpField == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (CmpField.class != cmpField.getClass()) {
        context.unexpectedSubclass(writer, cmpField, CmpField.class);
        return;
    }
    context.beforeMarshal(cmpField, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = cmpField.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(cmpField, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = cmpField.getDescriptions();
    } catch (final Exception e) {
        context.getterError(cmpField, "descriptions", CmpField.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(cmpField, "descriptions");
            }
        }
    }
    // ELEMENT: fieldName
    final String fieldNameRaw = cmpField.fieldName;
    String fieldName = null;
    try {
        fieldName = Adapters.collapsedStringAdapterAdapter.marshal(fieldNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(cmpField, "fieldName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (fieldName != null) {
        writer.writeStartElement(prefix, "field-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(fieldName);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(cmpField, "fieldName");
    }
    context.afterMarshal(cmpField, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) 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 9 with Text$JAXB.writeText

use of org.apache.openejb.jee.Text$JAXB.writeText in project tomee by apache.

the class AuthenticationMechanism$JAXB method _read.

public static final AuthenticationMechanism _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final AuthenticationMechanism authenticationMechanism = new AuthenticationMechanism();
    context.beforeUnmarshal(authenticationMechanism, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("authentication-mechanismType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, AuthenticationMechanism.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, authenticationMechanism);
            authenticationMechanism.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 (("authentication-mechanism-type" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: authenticationMechanismType
            final String authenticationMechanismTypeRaw = elementReader.getElementAsString();
            final String authenticationMechanismType;
            try {
                authenticationMechanismType = Adapters.collapsedStringAdapterAdapter.unmarshal(authenticationMechanismTypeRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            authenticationMechanism.authenticationMechanismType = authenticationMechanismType;
        } else if (("credential-interface" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: credentialInterface
            final String credentialInterfaceRaw = elementReader.getElementAsString();
            final String credentialInterface;
            try {
                credentialInterface = Adapters.collapsedStringAdapterAdapter.unmarshal(credentialInterfaceRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            authenticationMechanism.credentialInterface = credentialInterface;
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "description"), new QName("http://java.sun.com/xml/ns/javaee", "authentication-mechanism-type"), new QName("http://java.sun.com/xml/ns/javaee", "credential-interface"));
        }
    }
    if (descriptions != null) {
        try {
            authenticationMechanism.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, AuthenticationMechanism.class, "setDescriptions", Text[].class, e);
        }
    }
    context.afterUnmarshal(authenticationMechanism, LifecycleCallback.NONE);
    return authenticationMechanism;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) 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) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 10 with Text$JAXB.writeText

use of org.apache.openejb.jee.Text$JAXB.writeText in project tomee by apache.

the class FacesComponent$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final FacesComponent facesComponent, RuntimeContext context) throws Exception {
    if (facesComponent == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (FacesComponent.class != facesComponent.getClass()) {
        context.unexpectedSubclass(writer, facesComponent, FacesComponent.class);
        return;
    }
    context.beforeMarshal(facesComponent, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = facesComponent.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(facesComponent, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = facesComponent.getDescriptions();
    } catch (final Exception e) {
        context.getterError(facesComponent, "descriptions", FacesComponent.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(facesComponent, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = facesComponent.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(facesComponent, "displayNames", FacesComponent.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(facesComponent, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = facesComponent.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(facesComponent, "icon");
            }
        }
    }
    // ELEMENT: componentType
    final String componentTypeRaw = facesComponent.componentType;
    String componentType = null;
    try {
        componentType = Adapters.collapsedStringAdapterAdapter.marshal(componentTypeRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(facesComponent, "componentType", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (componentType != null) {
        writer.writeStartElement(prefix, "component-type", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(componentType);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(facesComponent, "componentType");
    }
    // ELEMENT: componentClass
    final String componentClassRaw = facesComponent.componentClass;
    String componentClass = null;
    try {
        componentClass = Adapters.collapsedStringAdapterAdapter.marshal(componentClassRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(facesComponent, "componentClass", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (componentClass != null) {
        writer.writeStartElement(prefix, "component-class", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(componentClass);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(facesComponent, "componentClass");
    }
    // ELEMENT: facet
    final List<FacesFacet> facet = facesComponent.facet;
    if (facet != null) {
        for (final FacesFacet facetItem : facet) {
            writer.writeStartElement(prefix, "facet", "http://java.sun.com/xml/ns/javaee");
            if (facetItem != null) {
                writeFacesFacet(writer, facetItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: attribute
    final List<FacesAttribute> attribute = facesComponent.attribute;
    if (attribute != null) {
        for (final FacesAttribute attributeItem : attribute) {
            writer.writeStartElement(prefix, "attribute", "http://java.sun.com/xml/ns/javaee");
            if (attributeItem != null) {
                writeFacesAttribute(writer, attributeItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: property
    final List<FacesProperty> property = facesComponent.property;
    if (property != null) {
        for (final FacesProperty propertyItem : property) {
            writer.writeStartElement(prefix, "property", "http://java.sun.com/xml/ns/javaee");
            if (propertyItem != null) {
                writeFacesProperty(writer, propertyItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: componentExtension
    final List<FacesComponentExtension> componentExtension = facesComponent.componentExtension;
    if (componentExtension != null) {
        for (final FacesComponentExtension componentExtensionItem : componentExtension) {
            if (componentExtensionItem != null) {
                writer.writeStartElement(prefix, "component-extension", "http://java.sun.com/xml/ns/javaee");
                writeFacesComponentExtension(writer, componentExtensionItem, context);
                writer.writeEndElement();
            }
        }
    }
    context.afterMarshal(facesComponent, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) FacesComponentExtension$JAXB.readFacesComponentExtension(org.apache.openejb.jee.FacesComponentExtension$JAXB.readFacesComponentExtension) FacesComponentExtension$JAXB.writeFacesComponentExtension(org.apache.openejb.jee.FacesComponentExtension$JAXB.writeFacesComponentExtension) FacesAttribute$JAXB.readFacesAttribute(org.apache.openejb.jee.FacesAttribute$JAXB.readFacesAttribute) FacesAttribute$JAXB.writeFacesAttribute(org.apache.openejb.jee.FacesAttribute$JAXB.writeFacesAttribute) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) FacesFacet$JAXB.readFacesFacet(org.apache.openejb.jee.FacesFacet$JAXB.readFacesFacet) FacesFacet$JAXB.writeFacesFacet(org.apache.openejb.jee.FacesFacet$JAXB.writeFacesFacet) 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) FacesProperty$JAXB.readFacesProperty(org.apache.openejb.jee.FacesProperty$JAXB.readFacesProperty) FacesProperty$JAXB.writeFacesProperty(org.apache.openejb.jee.FacesProperty$JAXB.writeFacesProperty)

Aggregations

Text$JAXB.readText (org.apache.openejb.jee.Text$JAXB.readText)155 RuntimeContext (org.metatype.sxc.jaxb.RuntimeContext)155 Text$JAXB.writeText (org.apache.openejb.jee.Text$JAXB.writeText)154 CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)126 QName (javax.xml.namespace.QName)80 Attribute (org.metatype.sxc.util.Attribute)78 XoXMLStreamReader (org.metatype.sxc.util.XoXMLStreamReader)78 Icon$JAXB.readIcon (org.apache.openejb.jee.Icon$JAXB.readIcon)70 Icon$JAXB.writeIcon (org.apache.openejb.jee.Icon$JAXB.writeIcon)70 ArrayList (java.util.ArrayList)56 InjectionTarget$JAXB.readInjectionTarget (org.apache.openejb.jee.InjectionTarget$JAXB.readInjectionTarget)18 InjectionTarget$JAXB.writeInjectionTarget (org.apache.openejb.jee.InjectionTarget$JAXB.writeInjectionTarget)18 DataSource$JAXB.readDataSource (org.apache.openejb.jee.DataSource$JAXB.readDataSource)14 DataSource$JAXB.writeDataSource (org.apache.openejb.jee.DataSource$JAXB.writeDataSource)14 EjbLocalRef$JAXB.readEjbLocalRef (org.apache.openejb.jee.EjbLocalRef$JAXB.readEjbLocalRef)14 EjbLocalRef$JAXB.writeEjbLocalRef (org.apache.openejb.jee.EjbLocalRef$JAXB.writeEjbLocalRef)14 EjbRef$JAXB.readEjbRef (org.apache.openejb.jee.EjbRef$JAXB.readEjbRef)14 EjbRef$JAXB.writeEjbRef (org.apache.openejb.jee.EjbRef$JAXB.writeEjbRef)14 EnvEntry$JAXB.readEnvEntry (org.apache.openejb.jee.EnvEntry$JAXB.readEnvEntry)14 EnvEntry$JAXB.writeEnvEntry (org.apache.openejb.jee.EnvEntry$JAXB.writeEnvEntry)14