Search in sources :

Example 1 with FacesRedirect$JAXB.readFacesRedirect

use of org.apache.openejb.jee.FacesRedirect$JAXB.readFacesRedirect in project tomee by apache.

the class FacesNavigationCase$JAXB method _read.

public static final FacesNavigationCase _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final FacesNavigationCase facesNavigationCase = new FacesNavigationCase();
    context.beforeUnmarshal(facesNavigationCase, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    ArrayList<Text> displayNames = null;
    LocalCollection<Icon> icon = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("faces-config-navigation-caseType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, FacesNavigationCase.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, facesNavigationCase);
            facesNavigationCase.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 = facesNavigationCase.icon;
                if (icon != null) {
                    icon.clear();
                } else {
                    icon = new LocalCollection<Icon>();
                }
            }
            icon.add(iconItem);
        } else if (("from-action" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: fromAction
            final FacesFromAction fromAction = readFacesFromAction(elementReader, context);
            facesNavigationCase.fromAction = fromAction;
        } else if (("from-outcome" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: fromOutcome
            final String fromOutcomeRaw = elementReader.getElementAsString();
            final String fromOutcome;
            try {
                fromOutcome = Adapters.collapsedStringAdapterAdapter.unmarshal(fromOutcomeRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            facesNavigationCase.fromOutcome = fromOutcome;
        } else if (("if" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: _if
            final String _ifRaw = elementReader.getElementAsString();
            final String _if;
            try {
                _if = Adapters.collapsedStringAdapterAdapter.unmarshal(_ifRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            facesNavigationCase._if = _if;
        } else if (("to-view-id" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: toViewId
            final String toViewIdRaw = elementReader.getElementAsString();
            final String toViewId;
            try {
                toViewId = Adapters.collapsedStringAdapterAdapter.unmarshal(toViewIdRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            facesNavigationCase.toViewId = toViewId;
        } else if (("redirect" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: redirect
            final FacesRedirect redirect = readFacesRedirect(elementReader, context);
            facesNavigationCase.redirect = redirect;
        } 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", "from-action"), new QName("http://java.sun.com/xml/ns/javaee", "from-outcome"), new QName("http://java.sun.com/xml/ns/javaee", "if"), new QName("http://java.sun.com/xml/ns/javaee", "to-view-id"), new QName("http://java.sun.com/xml/ns/javaee", "redirect"));
        }
    }
    if (descriptions != null) {
        try {
            facesNavigationCase.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, FacesNavigationCase.class, "setDescriptions", Text[].class, e);
        }
    }
    if (displayNames != null) {
        try {
            facesNavigationCase.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
        } catch (final Exception e) {
            context.setterError(reader, FacesNavigationCase.class, "setDisplayNames", Text[].class, e);
        }
    }
    if (icon != null) {
        facesNavigationCase.icon = icon;
    }
    context.afterUnmarshal(facesNavigationCase, LifecycleCallback.NONE);
    return facesNavigationCase;
}
Also used : FacesFromAction$JAXB.readFacesFromAction(org.apache.openejb.jee.FacesFromAction$JAXB.readFacesFromAction) FacesFromAction$JAXB.writeFacesFromAction(org.apache.openejb.jee.FacesFromAction$JAXB.writeFacesFromAction) 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) FacesRedirect$JAXB.writeFacesRedirect(org.apache.openejb.jee.FacesRedirect$JAXB.writeFacesRedirect) FacesRedirect$JAXB.readFacesRedirect(org.apache.openejb.jee.FacesRedirect$JAXB.readFacesRedirect) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 2 with FacesRedirect$JAXB.readFacesRedirect

use of org.apache.openejb.jee.FacesRedirect$JAXB.readFacesRedirect in project tomee by apache.

the class FacesNavigationCase$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final FacesNavigationCase facesNavigationCase, RuntimeContext context) throws Exception {
    if (facesNavigationCase == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (FacesNavigationCase.class != facesNavigationCase.getClass()) {
        context.unexpectedSubclass(writer, facesNavigationCase, FacesNavigationCase.class);
        return;
    }
    context.beforeMarshal(facesNavigationCase, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = facesNavigationCase.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(facesNavigationCase, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = facesNavigationCase.getDescriptions();
    } catch (final Exception e) {
        context.getterError(facesNavigationCase, "descriptions", FacesNavigationCase.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(facesNavigationCase, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = facesNavigationCase.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(facesNavigationCase, "displayNames", FacesNavigationCase.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(facesNavigationCase, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = facesNavigationCase.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(facesNavigationCase, "icon");
            }
        }
    }
    // ELEMENT: fromAction
    final FacesFromAction fromAction = facesNavigationCase.fromAction;
    if (fromAction != null) {
        writer.writeStartElement(prefix, "from-action", "http://java.sun.com/xml/ns/javaee");
        writeFacesFromAction(writer, fromAction, context);
        writer.writeEndElement();
    }
    // ELEMENT: fromOutcome
    final String fromOutcomeRaw = facesNavigationCase.fromOutcome;
    String fromOutcome = null;
    try {
        fromOutcome = Adapters.collapsedStringAdapterAdapter.marshal(fromOutcomeRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(facesNavigationCase, "fromOutcome", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (fromOutcome != null) {
        writer.writeStartElement(prefix, "from-outcome", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(fromOutcome);
        writer.writeEndElement();
    }
    // ELEMENT: _if
    final String _ifRaw = facesNavigationCase._if;
    String _if = null;
    try {
        _if = Adapters.collapsedStringAdapterAdapter.marshal(_ifRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(facesNavigationCase, "_if", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (_if != null) {
        writer.writeStartElement(prefix, "if", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(_if);
        writer.writeEndElement();
    }
    // ELEMENT: toViewId
    final String toViewIdRaw = facesNavigationCase.toViewId;
    String toViewId = null;
    try {
        toViewId = Adapters.collapsedStringAdapterAdapter.marshal(toViewIdRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(facesNavigationCase, "toViewId", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (toViewId != null) {
        writer.writeStartElement(prefix, "to-view-id", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(toViewId);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(facesNavigationCase, "toViewId");
    }
    // ELEMENT: redirect
    final FacesRedirect redirect = facesNavigationCase.redirect;
    if (redirect != null) {
        writer.writeStartElement(prefix, "redirect", "http://java.sun.com/xml/ns/javaee");
        writeFacesRedirect(writer, redirect, context);
        writer.writeEndElement();
    }
    context.afterMarshal(facesNavigationCase, LifecycleCallback.NONE);
}
Also used : FacesRedirect$JAXB.writeFacesRedirect(org.apache.openejb.jee.FacesRedirect$JAXB.writeFacesRedirect) FacesRedirect$JAXB.readFacesRedirect(org.apache.openejb.jee.FacesRedirect$JAXB.readFacesRedirect) CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) FacesFromAction$JAXB.readFacesFromAction(org.apache.openejb.jee.FacesFromAction$JAXB.readFacesFromAction) FacesFromAction$JAXB.writeFacesFromAction(org.apache.openejb.jee.FacesFromAction$JAXB.writeFacesFromAction) 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)

Aggregations

CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)2 FacesFromAction$JAXB.readFacesFromAction (org.apache.openejb.jee.FacesFromAction$JAXB.readFacesFromAction)2 FacesFromAction$JAXB.writeFacesFromAction (org.apache.openejb.jee.FacesFromAction$JAXB.writeFacesFromAction)2 FacesRedirect$JAXB.readFacesRedirect (org.apache.openejb.jee.FacesRedirect$JAXB.readFacesRedirect)2 FacesRedirect$JAXB.writeFacesRedirect (org.apache.openejb.jee.FacesRedirect$JAXB.writeFacesRedirect)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