Search in sources :

Example 1 with FacesBehaviorExtension$JAXB.writeFacesBehaviorExtension

use of org.apache.openejb.jee.FacesBehaviorExtension$JAXB.writeFacesBehaviorExtension in project tomee by apache.

the class FacesBehavior$JAXB method _read.

public static final FacesBehavior _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final FacesBehavior facesBehavior = new FacesBehavior();
    context.beforeUnmarshal(facesBehavior, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    ArrayList<Text> displayNames = null;
    LocalCollection<Icon> icon = null;
    List<FacesAttribute> attribute1 = null;
    List<FacesProperty> property = null;
    List<FacesBehaviorExtension> behaviorExtension = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("faces-config-behaviorType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, FacesBehavior.class);
        }
    }
    // Read attributes
    for (final Attribute attribute : reader.getAttributes()) {
        if (XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI != attribute.getNamespace()) {
            context.unexpectedAttribute(attribute);
        }
    }
    // 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 = facesBehavior.icon;
                if (icon != null) {
                    icon.clear();
                } else {
                    icon = new LocalCollection<Icon>();
                }
            }
            icon.add(iconItem);
        } else if (("behavior-id" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: behaviorId
            final String behaviorIdRaw = elementReader.getElementAsString();
            final String behaviorId;
            try {
                behaviorId = Adapters.collapsedStringAdapterAdapter.unmarshal(behaviorIdRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            facesBehavior.behaviorId = behaviorId;
        } else if (("behavior-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: behaviorClass
            final String behaviorClassRaw = elementReader.getElementAsString();
            final String behaviorClass;
            try {
                behaviorClass = Adapters.collapsedStringAdapterAdapter.unmarshal(behaviorClassRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            facesBehavior.behaviorClass = behaviorClass;
        } 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 = facesBehavior.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 = facesBehavior.property;
                if (property != null) {
                    property.clear();
                } else {
                    property = new ArrayList<FacesProperty>();
                }
            }
            property.add(propertyItem);
        } else if (("behavior-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: behaviorExtension
            final FacesBehaviorExtension behaviorExtensionItem = readFacesBehaviorExtension(elementReader, context);
            if (behaviorExtension == null) {
                behaviorExtension = facesBehavior.behaviorExtension;
                if (behaviorExtension != null) {
                    behaviorExtension.clear();
                } else {
                    behaviorExtension = new ArrayList<FacesBehaviorExtension>();
                }
            }
            behaviorExtension.add(behaviorExtensionItem);
        } 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", "behavior-id"), new QName("http://java.sun.com/xml/ns/javaee", "behavior-class"), 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", "behavior-extension"));
        }
    }
    if (descriptions != null) {
        try {
            facesBehavior.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, FacesBehavior.class, "setDescriptions", Text[].class, e);
        }
    }
    if (displayNames != null) {
        try {
            facesBehavior.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
        } catch (final Exception e) {
            context.setterError(reader, FacesBehavior.class, "setDisplayNames", Text[].class, e);
        }
    }
    if (icon != null) {
        facesBehavior.icon = icon;
    }
    if (attribute1 != null) {
        facesBehavior.attribute = attribute1;
    }
    if (property != null) {
        facesBehavior.property = property;
    }
    if (behaviorExtension != null) {
        facesBehavior.behaviorExtension = behaviorExtension;
    }
    context.afterUnmarshal(facesBehavior, LifecycleCallback.NONE);
    return facesBehavior;
}
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) QName(javax.xml.namespace.QName) FacesBehaviorExtension$JAXB.writeFacesBehaviorExtension(org.apache.openejb.jee.FacesBehaviorExtension$JAXB.writeFacesBehaviorExtension) FacesBehaviorExtension$JAXB.readFacesBehaviorExtension(org.apache.openejb.jee.FacesBehaviorExtension$JAXB.readFacesBehaviorExtension) 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) 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 2 with FacesBehaviorExtension$JAXB.writeFacesBehaviorExtension

use of org.apache.openejb.jee.FacesBehaviorExtension$JAXB.writeFacesBehaviorExtension in project tomee by apache.

the class FacesBehavior$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final FacesBehavior facesBehavior, RuntimeContext context) throws Exception {
    if (facesBehavior == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (FacesBehavior.class != facesBehavior.getClass()) {
        context.unexpectedSubclass(writer, facesBehavior, FacesBehavior.class);
        return;
    }
    context.beforeMarshal(facesBehavior, LifecycleCallback.NONE);
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = facesBehavior.getDescriptions();
    } catch (final Exception e) {
        context.getterError(facesBehavior, "descriptions", FacesBehavior.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(facesBehavior, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = facesBehavior.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(facesBehavior, "displayNames", FacesBehavior.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(facesBehavior, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = facesBehavior.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(facesBehavior, "icon");
            }
        }
    }
    // ELEMENT: behaviorId
    final String behaviorIdRaw = facesBehavior.behaviorId;
    String behaviorId = null;
    try {
        behaviorId = Adapters.collapsedStringAdapterAdapter.marshal(behaviorIdRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(facesBehavior, "behaviorId", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (behaviorId != null) {
        writer.writeStartElement(prefix, "behavior-id", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(behaviorId);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(facesBehavior, "behaviorId");
    }
    // ELEMENT: behaviorClass
    final String behaviorClassRaw = facesBehavior.behaviorClass;
    String behaviorClass = null;
    try {
        behaviorClass = Adapters.collapsedStringAdapterAdapter.marshal(behaviorClassRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(facesBehavior, "behaviorClass", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (behaviorClass != null) {
        writer.writeStartElement(prefix, "behavior-class", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(behaviorClass);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(facesBehavior, "behaviorClass");
    }
    // ELEMENT: attribute
    final List<FacesAttribute> attribute = facesBehavior.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 = facesBehavior.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: behaviorExtension
    final List<FacesBehaviorExtension> behaviorExtension = facesBehavior.behaviorExtension;
    if (behaviorExtension != null) {
        for (final FacesBehaviorExtension behaviorExtensionItem : behaviorExtension) {
            if (behaviorExtensionItem != null) {
                writer.writeStartElement(prefix, "behavior-extension", "http://java.sun.com/xml/ns/javaee");
                writeFacesBehaviorExtension(writer, behaviorExtensionItem, context);
                writer.writeEndElement();
            }
        }
    }
    context.afterMarshal(facesBehavior, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) FacesBehaviorExtension$JAXB.writeFacesBehaviorExtension(org.apache.openejb.jee.FacesBehaviorExtension$JAXB.writeFacesBehaviorExtension) FacesBehaviorExtension$JAXB.readFacesBehaviorExtension(org.apache.openejb.jee.FacesBehaviorExtension$JAXB.readFacesBehaviorExtension) 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) 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

CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)2 FacesAttribute$JAXB.readFacesAttribute (org.apache.openejb.jee.FacesAttribute$JAXB.readFacesAttribute)2 FacesAttribute$JAXB.writeFacesAttribute (org.apache.openejb.jee.FacesAttribute$JAXB.writeFacesAttribute)2 FacesBehaviorExtension$JAXB.readFacesBehaviorExtension (org.apache.openejb.jee.FacesBehaviorExtension$JAXB.readFacesBehaviorExtension)2 FacesBehaviorExtension$JAXB.writeFacesBehaviorExtension (org.apache.openejb.jee.FacesBehaviorExtension$JAXB.writeFacesBehaviorExtension)2 FacesProperty$JAXB.readFacesProperty (org.apache.openejb.jee.FacesProperty$JAXB.readFacesProperty)2 FacesProperty$JAXB.writeFacesProperty (org.apache.openejb.jee.FacesProperty$JAXB.writeFacesProperty)2 Icon$JAXB.readIcon (org.apache.openejb.jee.Icon$JAXB.readIcon)2 Icon$JAXB.writeIcon (org.apache.openejb.jee.Icon$JAXB.writeIcon)2 Text$JAXB.readText (org.apache.openejb.jee.Text$JAXB.readText)2 Text$JAXB.writeText (org.apache.openejb.jee.Text$JAXB.writeText)2 RuntimeContext (org.metatype.sxc.jaxb.RuntimeContext)2 ArrayList (java.util.ArrayList)1 QName (javax.xml.namespace.QName)1 Attribute (org.metatype.sxc.util.Attribute)1 XoXMLStreamReader (org.metatype.sxc.util.XoXMLStreamReader)1