Search in sources :

Example 71 with RuntimeContext

use of org.metatype.sxc.jaxb.RuntimeContext in project tomee by apache.

the class FacesComponent$JAXB method _read.

public static final FacesComponent _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final FacesComponent facesComponent = new FacesComponent();
    context.beforeUnmarshal(facesComponent, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    ArrayList<Text> displayNames = null;
    LocalCollection<Icon> icon = null;
    List<FacesFacet> facet = null;
    List<FacesAttribute> attribute1 = null;
    List<FacesProperty> property = null;
    List<FacesComponentExtension> componentExtension = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("faces-config-componentType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, FacesComponent.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, facesComponent);
            facesComponent.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 = facesComponent.icon;
                if (icon != null) {
                    icon.clear();
                } else {
                    icon = new LocalCollection<Icon>();
                }
            }
            icon.add(iconItem);
        } else if (("component-type" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: componentType
            final String componentTypeRaw = elementReader.getElementAsString();
            final String componentType;
            try {
                componentType = Adapters.collapsedStringAdapterAdapter.unmarshal(componentTypeRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            facesComponent.componentType = componentType;
        } else if (("component-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: componentClass
            final String componentClassRaw = elementReader.getElementAsString();
            final String componentClass;
            try {
                componentClass = Adapters.collapsedStringAdapterAdapter.unmarshal(componentClassRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            facesComponent.componentClass = componentClass;
        } else if (("facet" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: facet
            final FacesFacet facetItem = readFacesFacet(elementReader, context);
            if (facet == null) {
                facet = facesComponent.facet;
                if (facet != null) {
                    facet.clear();
                } else {
                    facet = new ArrayList<FacesFacet>();
                }
            }
            facet.add(facetItem);
        } else if (("attribute" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: attribute
            final FacesAttribute attributeItem = readFacesAttribute(elementReader, context);
            if (attribute1 == null) {
                attribute1 = facesComponent.attribute;
                if (attribute1 != null) {
                    attribute1.clear();
                } else {
                    attribute1 = new ArrayList<FacesAttribute>();
                }
            }
            attribute1.add(attributeItem);
        } else if (("property" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: property
            final FacesProperty propertyItem = readFacesProperty(elementReader, context);
            if (property == null) {
                property = facesComponent.property;
                if (property != null) {
                    property.clear();
                } else {
                    property = new ArrayList<FacesProperty>();
                }
            }
            property.add(propertyItem);
        } else if (("component-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: componentExtension
            final FacesComponentExtension componentExtensionItem = readFacesComponentExtension(elementReader, context);
            if (componentExtension == null) {
                componentExtension = facesComponent.componentExtension;
                if (componentExtension != null) {
                    componentExtension.clear();
                } else {
                    componentExtension = new ArrayList<FacesComponentExtension>();
                }
            }
            componentExtension.add(componentExtensionItem);
        } else {
        // just here ATM to not prevent users to get JSF 2.2 feature because we can't read it
        // TODO: handle it properly
        // 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", "component-type"), new QName("http://java.sun.com/xml/ns/javaee", "component-class"), new QName("http://java.sun.com/xml/ns/javaee", "facet"), new QName("http://java.sun.com/xml/ns/javaee", "attribute"), new QName("http://java.sun.com/xml/ns/javaee", "property"), new QName("http://java.sun.com/xml/ns/javaee", "component-extension"));
        }
    }
    if (descriptions != null) {
        try {
            facesComponent.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, FacesComponent.class, "setDescriptions", Text[].class, e);
        }
    }
    if (displayNames != null) {
        try {
            facesComponent.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
        } catch (final Exception e) {
            context.setterError(reader, FacesComponent.class, "setDisplayNames", Text[].class, e);
        }
    }
    if (icon != null) {
        facesComponent.icon = icon;
    }
    if (facet != null) {
        facesComponent.facet = facet;
    }
    if (attribute1 != null) {
        facesComponent.attribute = attribute1;
    }
    if (property != null) {
        facesComponent.property = property;
    }
    if (componentExtension != null) {
        facesComponent.componentExtension = componentExtension;
    }
    context.afterUnmarshal(facesComponent, LifecycleCallback.NONE);
    return facesComponent;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) FacesAttribute$JAXB.readFacesAttribute(org.apache.openejb.jee.FacesAttribute$JAXB.readFacesAttribute) FacesAttribute$JAXB.writeFacesAttribute(org.apache.openejb.jee.FacesAttribute$JAXB.writeFacesAttribute) Attribute(org.metatype.sxc.util.Attribute) FacesComponentExtension$JAXB.readFacesComponentExtension(org.apache.openejb.jee.FacesComponentExtension$JAXB.readFacesComponentExtension) FacesComponentExtension$JAXB.writeFacesComponentExtension(org.apache.openejb.jee.FacesComponentExtension$JAXB.writeFacesComponentExtension) QName(javax.xml.namespace.QName) ArrayList(java.util.ArrayList) 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) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 72 with RuntimeContext

use of org.metatype.sxc.jaxb.RuntimeContext 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)

Example 73 with RuntimeContext

use of org.metatype.sxc.jaxb.RuntimeContext in project tomee by apache.

the class FacesConfig$JAXB method _read.

public static final FacesConfig _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final FacesConfig facesConfig = new FacesConfig();
    context.beforeUnmarshal(facesConfig, LifecycleCallback.NONE);
    List<FacesApplication> application = null;
    List<FacesOrdering> ordering = null;
    List<FacesAbsoluteOrdering> absoluteOrdering = null;
    List<FacesFactory> factory = null;
    List<FacesComponent> component = null;
    List<FacesConverter> converter = null;
    List<FacesManagedBean> managedBean = null;
    List<String> name = null;
    List<FacesNavigationRule> navigationRule = null;
    List<FacesReferencedBean> referencedBean = null;
    List<FacesRenderKit> renderKit = null;
    List<FacesLifecycle> lifecycle = null;
    List<FacesValidator> validator = null;
    List<FacesBehavior> behavior = null;
    List<FacesExtension> facesConfigExtension = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("faces-configType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, FacesConfig.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, facesConfig);
            facesConfig.id = id;
        } else if (("version" == attribute.getLocalName()) && (("" == attribute.getNamespace()) || (attribute.getNamespace() == null))) {
            // ATTRIBUTE: version
            facesConfig.version = Adapters.collapsedStringAdapterAdapter.unmarshal(attribute.getValue());
        } else if (("metadata-complete" == attribute.getLocalName()) && (("" == attribute.getNamespace()) || (attribute.getNamespace() == null))) {
            // ATTRIBUTE: metadataComplete
            final Boolean metadataComplete = ("1".equals(attribute.getValue()) || "true".equals(attribute.getValue()));
            facesConfig.metadataComplete = metadataComplete;
        } else if (XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI != attribute.getNamespace()) {
            context.unexpectedAttribute(attribute, new QName("", "id"), new QName("", "version"), new QName("", "metadata-complete"));
        }
    }
    // Read elements
    for (final XoXMLStreamReader elementReader : reader.getChildElements()) {
        if (("application" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: application
            final FacesApplication applicationItem = readFacesApplication(elementReader, context);
            if (application == null) {
                application = facesConfig.application;
                if (application != null) {
                    application.clear();
                } else {
                    application = new ArrayList<FacesApplication>();
                }
            }
            application.add(applicationItem);
        } else if (("ordering" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: ordering
            final FacesOrdering orderingItem = readFacesOrdering(elementReader, context);
            if (ordering == null) {
                ordering = facesConfig.ordering;
                if (ordering != null) {
                    ordering.clear();
                } else {
                    ordering = new ArrayList<FacesOrdering>();
                }
            }
            ordering.add(orderingItem);
        } else if (("absolute-ordering" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: absoluteOrdering
            final FacesAbsoluteOrdering absoluteOrderingItem = readFacesAbsoluteOrdering(elementReader, context);
            if (absoluteOrdering == null) {
                absoluteOrdering = facesConfig.absoluteOrdering;
                if (absoluteOrdering != null) {
                    absoluteOrdering.clear();
                } else {
                    absoluteOrdering = new ArrayList<FacesAbsoluteOrdering>();
                }
            }
            absoluteOrdering.add(absoluteOrderingItem);
        } else if (("factory" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: factory
            final FacesFactory factoryItem = readFacesFactory(elementReader, context);
            if (factory == null) {
                factory = facesConfig.factory;
                if (factory != null) {
                    factory.clear();
                } else {
                    factory = new ArrayList<FacesFactory>();
                }
            }
            factory.add(factoryItem);
        } else if (("component" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: component
            final FacesComponent componentItem = readFacesComponent(elementReader, context);
            if (component == null) {
                component = facesConfig.component;
                if (component != null) {
                    component.clear();
                } else {
                    component = new ArrayList<FacesComponent>();
                }
            }
            component.add(componentItem);
        } else if (("converter" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: converter
            final FacesConverter converterItem = readFacesConverter(elementReader, context);
            if (converter == null) {
                converter = facesConfig.converter;
                if (converter != null) {
                    converter.clear();
                } else {
                    converter = new ArrayList<FacesConverter>();
                }
            }
            converter.add(converterItem);
        } else if (("managed-bean" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: managedBean
            final FacesManagedBean managedBeanItem = readFacesManagedBean(elementReader, context);
            if (managedBean == null) {
                managedBean = facesConfig.managedBean;
                if (managedBean != null) {
                    managedBean.clear();
                } else {
                    managedBean = new ArrayList<FacesManagedBean>();
                }
            }
            managedBean.add(managedBeanItem);
        } else if (("name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: name
            String nameItemRaw = null;
            if (!elementReader.isXsiNil()) {
                nameItemRaw = elementReader.getElementAsString();
            }
            final String nameItem;
            try {
                nameItem = Adapters.collapsedStringAdapterAdapter.unmarshal(nameItemRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            if (name == null) {
                name = facesConfig.name;
                if (name != null) {
                    name.clear();
                } else {
                    name = new ArrayList<String>();
                }
            }
            name.add(nameItem);
        } else if (("navigation-rule" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: navigationRule
            final FacesNavigationRule navigationRuleItem = readFacesNavigationRule(elementReader, context);
            if (navigationRule == null) {
                navigationRule = facesConfig.navigationRule;
                if (navigationRule != null) {
                    navigationRule.clear();
                } else {
                    navigationRule = new ArrayList<FacesNavigationRule>();
                }
            }
            navigationRule.add(navigationRuleItem);
        } else if (("referenced-bean" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: referencedBean
            final FacesReferencedBean referencedBeanItem = readFacesReferencedBean(elementReader, context);
            if (referencedBean == null) {
                referencedBean = facesConfig.referencedBean;
                if (referencedBean != null) {
                    referencedBean.clear();
                } else {
                    referencedBean = new ArrayList<FacesReferencedBean>();
                }
            }
            referencedBean.add(referencedBeanItem);
        } else if (("render-kit" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: renderKit
            final FacesRenderKit renderKitItem = readFacesRenderKit(elementReader, context);
            if (renderKit == null) {
                renderKit = facesConfig.renderKit;
                if (renderKit != null) {
                    renderKit.clear();
                } else {
                    renderKit = new ArrayList<FacesRenderKit>();
                }
            }
            renderKit.add(renderKitItem);
        } else if (("lifecycle" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: lifecycle
            final FacesLifecycle lifecycleItem = readFacesLifecycle(elementReader, context);
            if (lifecycle == null) {
                lifecycle = facesConfig.lifecycle;
                if (lifecycle != null) {
                    lifecycle.clear();
                } else {
                    lifecycle = new ArrayList<FacesLifecycle>();
                }
            }
            lifecycle.add(lifecycleItem);
        } else if (("validator" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: validator
            final FacesValidator validatorItem = readFacesValidator(elementReader, context);
            if (validator == null) {
                validator = facesConfig.validator;
                if (validator != null) {
                    validator.clear();
                } else {
                    validator = new ArrayList<FacesValidator>();
                }
            }
            validator.add(validatorItem);
        } else if (("behavior" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: behavior
            final FacesBehavior behaviorItem = readFacesBehavior(elementReader, context);
            if (behavior == null) {
                behavior = facesConfig.behavior;
                if (behavior != null) {
                    behavior.clear();
                } else {
                    behavior = new ArrayList<FacesBehavior>();
                }
            }
            behavior.add(behaviorItem);
        } else if (("faces-config-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: facesConfigExtension
            final FacesExtension facesConfigExtensionItem = readFacesExtension(elementReader, context);
            if (facesConfigExtension == null) {
                facesConfigExtension = facesConfig.facesConfigExtension;
                if (facesConfigExtension != null) {
                    facesConfigExtension.clear();
                } else {
                    facesConfigExtension = new ArrayList<FacesExtension>();
                }
            }
            facesConfigExtension.add(facesConfigExtensionItem);
        } else if ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI()) {
        // just here ATM to not prevent users to get JSF 2.2 feature because we can't read it
        // TODO:  read it if we need it (= classes to add to injectable classes, other file to parse to find them etc...)
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "application"), new QName("http://java.sun.com/xml/ns/javaee", "ordering"), new QName("http://java.sun.com/xml/ns/javaee", "absolute-ordering"), new QName("http://java.sun.com/xml/ns/javaee", "factory"), new QName("http://java.sun.com/xml/ns/javaee", "component"), new QName("http://java.sun.com/xml/ns/javaee", "converter"), new QName("http://java.sun.com/xml/ns/javaee", "managed-bean"), new QName("http://java.sun.com/xml/ns/javaee", "name"), new QName("http://java.sun.com/xml/ns/javaee", "navigation-rule"), new QName("http://java.sun.com/xml/ns/javaee", "referenced-bean"), new QName("http://java.sun.com/xml/ns/javaee", "render-kit"), new QName("http://java.sun.com/xml/ns/javaee", "lifecycle"), new QName("http://java.sun.com/xml/ns/javaee", "validator"), new QName("http://java.sun.com/xml/ns/javaee", "behavior"), new QName("http://java.sun.com/xml/ns/javaee", "faces-config-extension"));
        }
    }
    if (application != null) {
        facesConfig.application = application;
    }
    if (ordering != null) {
        facesConfig.ordering = ordering;
    }
    if (absoluteOrdering != null) {
        facesConfig.absoluteOrdering = absoluteOrdering;
    }
    if (factory != null) {
        facesConfig.factory = factory;
    }
    if (component != null) {
        facesConfig.component = component;
    }
    if (converter != null) {
        facesConfig.converter = converter;
    }
    if (managedBean != null) {
        facesConfig.managedBean = managedBean;
    }
    if (name != null) {
        facesConfig.name = name;
    }
    if (navigationRule != null) {
        facesConfig.navigationRule = navigationRule;
    }
    if (referencedBean != null) {
        facesConfig.referencedBean = referencedBean;
    }
    if (renderKit != null) {
        facesConfig.renderKit = renderKit;
    }
    if (lifecycle != null) {
        facesConfig.lifecycle = lifecycle;
    }
    if (validator != null) {
        facesConfig.validator = validator;
    }
    if (behavior != null) {
        facesConfig.behavior = behavior;
    }
    if (facesConfigExtension != null) {
        facesConfig.facesConfigExtension = facesConfigExtension;
    }
    context.afterUnmarshal(facesConfig, LifecycleCallback.NONE);
    return facesConfig;
}
Also used : FacesNavigationRule$JAXB.readFacesNavigationRule(org.apache.openejb.jee.FacesNavigationRule$JAXB.readFacesNavigationRule) FacesNavigationRule$JAXB.writeFacesNavigationRule(org.apache.openejb.jee.FacesNavigationRule$JAXB.writeFacesNavigationRule) FacesManagedBean$JAXB.writeFacesManagedBean(org.apache.openejb.jee.FacesManagedBean$JAXB.writeFacesManagedBean) FacesManagedBean$JAXB.readFacesManagedBean(org.apache.openejb.jee.FacesManagedBean$JAXB.readFacesManagedBean) Attribute(org.metatype.sxc.util.Attribute) ArrayList(java.util.ArrayList) FacesApplication$JAXB.readFacesApplication(org.apache.openejb.jee.FacesApplication$JAXB.readFacesApplication) FacesApplication$JAXB.writeFacesApplication(org.apache.openejb.jee.FacesApplication$JAXB.writeFacesApplication) FacesLifecycle$JAXB.writeFacesLifecycle(org.apache.openejb.jee.FacesLifecycle$JAXB.writeFacesLifecycle) FacesLifecycle$JAXB.readFacesLifecycle(org.apache.openejb.jee.FacesLifecycle$JAXB.readFacesLifecycle) FacesReferencedBean$JAXB.writeFacesReferencedBean(org.apache.openejb.jee.FacesReferencedBean$JAXB.writeFacesReferencedBean) FacesReferencedBean$JAXB.readFacesReferencedBean(org.apache.openejb.jee.FacesReferencedBean$JAXB.readFacesReferencedBean) FacesValidator$JAXB.readFacesValidator(org.apache.openejb.jee.FacesValidator$JAXB.readFacesValidator) FacesValidator$JAXB.writeFacesValidator(org.apache.openejb.jee.FacesValidator$JAXB.writeFacesValidator) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader) FacesRenderKit$JAXB.writeFacesRenderKit(org.apache.openejb.jee.FacesRenderKit$JAXB.writeFacesRenderKit) FacesRenderKit$JAXB.readFacesRenderKit(org.apache.openejb.jee.FacesRenderKit$JAXB.readFacesRenderKit) FacesConverter$JAXB.readFacesConverter(org.apache.openejb.jee.FacesConverter$JAXB.readFacesConverter) FacesConverter$JAXB.writeFacesConverter(org.apache.openejb.jee.FacesConverter$JAXB.writeFacesConverter) QName(javax.xml.namespace.QName) FacesAbsoluteOrdering$JAXB.readFacesAbsoluteOrdering(org.apache.openejb.jee.FacesAbsoluteOrdering$JAXB.readFacesAbsoluteOrdering) FacesAbsoluteOrdering$JAXB.writeFacesAbsoluteOrdering(org.apache.openejb.jee.FacesAbsoluteOrdering$JAXB.writeFacesAbsoluteOrdering) FacesExtension$JAXB.readFacesExtension(org.apache.openejb.jee.FacesExtension$JAXB.readFacesExtension) FacesExtension$JAXB.writeFacesExtension(org.apache.openejb.jee.FacesExtension$JAXB.writeFacesExtension) FacesComponent$JAXB.readFacesComponent(org.apache.openejb.jee.FacesComponent$JAXB.readFacesComponent) FacesComponent$JAXB.writeFacesComponent(org.apache.openejb.jee.FacesComponent$JAXB.writeFacesComponent) FacesOrdering$JAXB.writeFacesOrdering(org.apache.openejb.jee.FacesOrdering$JAXB.writeFacesOrdering) FacesOrdering$JAXB.readFacesOrdering(org.apache.openejb.jee.FacesOrdering$JAXB.readFacesOrdering) FacesFactory$JAXB.writeFacesFactory(org.apache.openejb.jee.FacesFactory$JAXB.writeFacesFactory) FacesFactory$JAXB.readFacesFactory(org.apache.openejb.jee.FacesFactory$JAXB.readFacesFactory) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) FacesBehavior$JAXB.writeFacesBehavior(org.apache.openejb.jee.FacesBehavior$JAXB.writeFacesBehavior) FacesBehavior$JAXB.readFacesBehavior(org.apache.openejb.jee.FacesBehavior$JAXB.readFacesBehavior)

Example 74 with RuntimeContext

use of org.metatype.sxc.jaxb.RuntimeContext in project tomee by apache.

the class FacesConverterExtension$JAXB method _read.

public static final FacesConverterExtension _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final FacesConverterExtension facesConverterExtension = new FacesConverterExtension();
    context.beforeUnmarshal(facesConverterExtension, LifecycleCallback.NONE);
    List<Object> any = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("faces-config-converter-extensionType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, FacesConverterExtension.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, facesConverterExtension);
            facesConverterExtension.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()) {
        // ELEMENT_REF: any
        if (any == null) {
            any = facesConverterExtension.any;
            if (any != null) {
                any.clear();
            } else {
                any = new ArrayList<Object>();
            }
        }
        any.add(context.readXmlAny(elementReader, Object.class, true));
    }
    if (any != null) {
        facesConverterExtension.any = any;
    }
    context.afterUnmarshal(facesConverterExtension, LifecycleCallback.NONE);
    return facesConverterExtension;
}
Also used : Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) JAXBObject(org.metatype.sxc.jaxb.JAXBObject) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 75 with RuntimeContext

use of org.metatype.sxc.jaxb.RuntimeContext in project tomee by apache.

the class FacesConverterExtension$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final FacesConverterExtension facesConverterExtension, RuntimeContext context) throws Exception {
    if (facesConverterExtension == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    if (FacesConverterExtension.class != facesConverterExtension.getClass()) {
        context.unexpectedSubclass(writer, facesConverterExtension, FacesConverterExtension.class);
        return;
    }
    context.beforeMarshal(facesConverterExtension, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = facesConverterExtension.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(facesConverterExtension, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT_REF: any
    final List<Object> any = facesConverterExtension.any;
    if (any != null) {
        for (final Object anyItem : any) {
            context.writeXmlAny(writer, facesConverterExtension, "any", anyItem);
        }
    }
    context.afterMarshal(facesConverterExtension, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) JAXBObject(org.metatype.sxc.jaxb.JAXBObject) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Aggregations

RuntimeContext (org.metatype.sxc.jaxb.RuntimeContext)380 CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)300 QName (javax.xml.namespace.QName)202 Attribute (org.metatype.sxc.util.Attribute)190 XoXMLStreamReader (org.metatype.sxc.util.XoXMLStreamReader)182 Text$JAXB.readText (org.apache.openejb.jee.Text$JAXB.readText)155 Text$JAXB.writeText (org.apache.openejb.jee.Text$JAXB.writeText)154 ArrayList (java.util.ArrayList)91 Icon$JAXB.readIcon (org.apache.openejb.jee.Icon$JAXB.readIcon)74 Icon$JAXB.writeIcon (org.apache.openejb.jee.Icon$JAXB.writeIcon)74 JAXBObject (org.metatype.sxc.jaxb.JAXBObject)39 List (java.util.List)22 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