Search in sources :

Example 1 with ResAuth$JAXB.toStringResAuth

use of org.apache.openejb.jee.ResAuth$JAXB.toStringResAuth in project tomee by apache.

the class ResourceRef$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final ResourceRef resourceRef, RuntimeContext context) throws Exception {
    if (resourceRef == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (ResourceRef.class != resourceRef.getClass()) {
        context.unexpectedSubclass(writer, resourceRef, ResourceRef.class);
        return;
    }
    context.beforeMarshal(resourceRef, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = resourceRef.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(resourceRef, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = resourceRef.getDescriptions();
    } catch (final Exception e) {
        context.getterError(resourceRef, "descriptions", ResourceRef.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(resourceRef, "descriptions");
            }
        }
    }
    // ELEMENT: resRefName
    final String resRefNameRaw = resourceRef.resRefName;
    String resRefName = null;
    try {
        resRefName = Adapters.collapsedStringAdapterAdapter.marshal(resRefNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(resourceRef, "resRefName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (resRefName != null) {
        writer.writeStartElement(prefix, "res-ref-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(resRefName);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(resourceRef, "resRefName");
    }
    // ELEMENT: resType
    final String resTypeRaw = resourceRef.resType;
    String resType = null;
    try {
        resType = Adapters.collapsedStringAdapterAdapter.marshal(resTypeRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(resourceRef, "resType", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (resType != null) {
        writer.writeStartElement(prefix, "res-type", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(resType);
        writer.writeEndElement();
    }
    // ELEMENT: resAuth
    final ResAuth resAuth = resourceRef.resAuth;
    if (resAuth != null) {
        writer.writeStartElement(prefix, "res-auth", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(toStringResAuth(resourceRef, null, context, resAuth));
        writer.writeEndElement();
    }
    // ELEMENT: resSharingScope
    final ResSharingScope resSharingScope = resourceRef.resSharingScope;
    if (resSharingScope != null) {
        writer.writeStartElement(prefix, "res-sharing-scope", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(toStringResSharingScope(resourceRef, null, context, resSharingScope));
        writer.writeEndElement();
    }
    // ELEMENT: mappedName
    final String mappedNameRaw = resourceRef.mappedName;
    String mappedName = null;
    try {
        mappedName = Adapters.collapsedStringAdapterAdapter.marshal(mappedNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(resourceRef, "mappedName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (mappedName != null) {
        writer.writeStartElement(prefix, "mapped-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(mappedName);
        writer.writeEndElement();
    }
    // ELEMENT: injectionTarget
    final Set<InjectionTarget> injectionTarget = resourceRef.injectionTarget;
    if (injectionTarget != null) {
        for (final InjectionTarget injectionTargetItem : injectionTarget) {
            if (injectionTargetItem != null) {
                writer.writeStartElement(prefix, "injection-target", "http://java.sun.com/xml/ns/javaee");
                writeInjectionTarget(writer, injectionTargetItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(resourceRef, "injectionTarget");
            }
        }
    }
    // ELEMENT: lookupName
    final String lookupNameRaw = resourceRef.lookupName;
    String lookupName = null;
    try {
        lookupName = Adapters.collapsedStringAdapterAdapter.marshal(lookupNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(resourceRef, "lookupName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (lookupName != null) {
        writer.writeStartElement(prefix, "lookup-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(lookupName);
        writer.writeEndElement();
    }
    context.afterMarshal(resourceRef, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) ResAuth$JAXB.parseResAuth(org.apache.openejb.jee.ResAuth$JAXB.parseResAuth) ResAuth$JAXB.toStringResAuth(org.apache.openejb.jee.ResAuth$JAXB.toStringResAuth) ResSharingScope$JAXB.toStringResSharingScope(org.apache.openejb.jee.ResSharingScope$JAXB.toStringResSharingScope) ResSharingScope$JAXB.parseResSharingScope(org.apache.openejb.jee.ResSharingScope$JAXB.parseResSharingScope) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) InjectionTarget$JAXB.writeInjectionTarget(org.apache.openejb.jee.InjectionTarget$JAXB.writeInjectionTarget) InjectionTarget$JAXB.readInjectionTarget(org.apache.openejb.jee.InjectionTarget$JAXB.readInjectionTarget) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Example 2 with ResAuth$JAXB.toStringResAuth

use of org.apache.openejb.jee.ResAuth$JAXB.toStringResAuth in project tomee by apache.

the class ResourceRef$JAXB method _read.

public static final ResourceRef _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final ResourceRef resourceRef = new ResourceRef();
    context.beforeUnmarshal(resourceRef, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    Set<InjectionTarget> injectionTarget = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("resource-refType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, ResourceRef.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, resourceRef);
            resourceRef.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 (("res-ref-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: resRefName
            final String resRefNameRaw = elementReader.getElementAsString();
            final String resRefName;
            try {
                resRefName = Adapters.collapsedStringAdapterAdapter.unmarshal(resRefNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            resourceRef.resRefName = resRefName;
        } else if (("res-type" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: resType
            final String resTypeRaw = elementReader.getElementAsString();
            final String resType;
            try {
                resType = Adapters.collapsedStringAdapterAdapter.unmarshal(resTypeRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            resourceRef.resType = resType;
        } else if (("res-auth" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: resAuth
            final ResAuth resAuth = parseResAuth(elementReader, context, elementReader.getElementAsString());
            if (resAuth != null) {
                resourceRef.resAuth = resAuth;
            }
        } else if (("res-sharing-scope" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: resSharingScope
            final ResSharingScope resSharingScope = parseResSharingScope(elementReader, context, elementReader.getElementAsString());
            if (resSharingScope != null) {
                resourceRef.resSharingScope = resSharingScope;
            }
        } else if (("mapped-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: mappedName
            final String mappedNameRaw = elementReader.getElementAsString();
            final String mappedName;
            try {
                mappedName = Adapters.collapsedStringAdapterAdapter.unmarshal(mappedNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            resourceRef.mappedName = mappedName;
        } else if (("injection-target" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: injectionTarget
            final InjectionTarget injectionTargetItem = readInjectionTarget(elementReader, context);
            if (injectionTarget == null) {
                injectionTarget = resourceRef.injectionTarget;
                if (injectionTarget != null) {
                    injectionTarget.clear();
                } else {
                    injectionTarget = new LinkedHashSet<InjectionTarget>();
                }
            }
            injectionTarget.add(injectionTargetItem);
        } else if (("lookup-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: lookupName
            final String lookupNameRaw = elementReader.getElementAsString();
            final String lookupName;
            try {
                lookupName = Adapters.collapsedStringAdapterAdapter.unmarshal(lookupNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            resourceRef.lookupName = lookupName;
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "description"), new QName("http://java.sun.com/xml/ns/javaee", "res-ref-name"), new QName("http://java.sun.com/xml/ns/javaee", "res-type"), new QName("http://java.sun.com/xml/ns/javaee", "res-auth"), new QName("http://java.sun.com/xml/ns/javaee", "res-sharing-scope"), new QName("http://java.sun.com/xml/ns/javaee", "mapped-name"), new QName("http://java.sun.com/xml/ns/javaee", "injection-target"), new QName("http://java.sun.com/xml/ns/javaee", "lookup-name"));
        }
    }
    if (descriptions != null) {
        try {
            resourceRef.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, ResourceRef.class, "setDescriptions", Text[].class, e);
        }
    }
    if (injectionTarget != null) {
        resourceRef.injectionTarget = injectionTarget;
    }
    context.afterUnmarshal(resourceRef, LifecycleCallback.NONE);
    return resourceRef;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) ResAuth$JAXB.parseResAuth(org.apache.openejb.jee.ResAuth$JAXB.parseResAuth) ResAuth$JAXB.toStringResAuth(org.apache.openejb.jee.ResAuth$JAXB.toStringResAuth) Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) ResSharingScope$JAXB.toStringResSharingScope(org.apache.openejb.jee.ResSharingScope$JAXB.toStringResSharingScope) ResSharingScope$JAXB.parseResSharingScope(org.apache.openejb.jee.ResSharingScope$JAXB.parseResSharingScope) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) InjectionTarget$JAXB.writeInjectionTarget(org.apache.openejb.jee.InjectionTarget$JAXB.writeInjectionTarget) InjectionTarget$JAXB.readInjectionTarget(org.apache.openejb.jee.InjectionTarget$JAXB.readInjectionTarget) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Aggregations

CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)2 InjectionTarget$JAXB.readInjectionTarget (org.apache.openejb.jee.InjectionTarget$JAXB.readInjectionTarget)2 InjectionTarget$JAXB.writeInjectionTarget (org.apache.openejb.jee.InjectionTarget$JAXB.writeInjectionTarget)2 ResAuth$JAXB.parseResAuth (org.apache.openejb.jee.ResAuth$JAXB.parseResAuth)2 ResAuth$JAXB.toStringResAuth (org.apache.openejb.jee.ResAuth$JAXB.toStringResAuth)2 ResSharingScope$JAXB.parseResSharingScope (org.apache.openejb.jee.ResSharingScope$JAXB.parseResSharingScope)2 ResSharingScope$JAXB.toStringResSharingScope (org.apache.openejb.jee.ResSharingScope$JAXB.toStringResSharingScope)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 QName (javax.xml.namespace.QName)1 Attribute (org.metatype.sxc.util.Attribute)1 XoXMLStreamReader (org.metatype.sxc.util.XoXMLStreamReader)1