Search in sources :

Example 6 with MethodParams

use of org.apache.openejb.jee.MethodParams in project tomee by apache.

the class NamedMethod$JAXB method _read.

public static final NamedMethod _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final NamedMethod namedMethod = new NamedMethod();
    context.beforeUnmarshal(namedMethod, LifecycleCallback.NONE);
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("named-methodType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, NamedMethod.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, namedMethod);
            namedMethod.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 (("method-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: methodName
            final String methodNameRaw = elementReader.getElementAsString();
            final String methodName;
            try {
                methodName = Adapters.collapsedStringAdapterAdapter.unmarshal(methodNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            namedMethod.methodName = methodName;
        } else if (("method-params" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: methodParams
            final MethodParams methodParams = readMethodParams(elementReader, context);
            namedMethod.methodParams = methodParams;
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "method-name"), new QName("http://java.sun.com/xml/ns/javaee", "method-params"));
        }
    }
    context.afterUnmarshal(namedMethod, LifecycleCallback.NONE);
    return namedMethod;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) MethodParams$JAXB.writeMethodParams(org.apache.openejb.jee.MethodParams$JAXB.writeMethodParams) MethodParams$JAXB.readMethodParams(org.apache.openejb.jee.MethodParams$JAXB.readMethodParams) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 7 with MethodParams

use of org.apache.openejb.jee.MethodParams in project tomee by apache.

the class NamedMethod$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final NamedMethod namedMethod, RuntimeContext context) throws Exception {
    if (namedMethod == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (NamedMethod.class != namedMethod.getClass()) {
        context.unexpectedSubclass(writer, namedMethod, NamedMethod.class);
        return;
    }
    context.beforeMarshal(namedMethod, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = namedMethod.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(namedMethod, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: methodName
    final String methodNameRaw = namedMethod.methodName;
    String methodName = null;
    try {
        methodName = Adapters.collapsedStringAdapterAdapter.marshal(methodNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(namedMethod, "methodName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (methodName != null) {
        writer.writeStartElement(prefix, "method-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(methodName);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(namedMethod, "methodName");
    }
    // ELEMENT: methodParams
    final MethodParams methodParams = namedMethod.methodParams;
    if (methodParams != null) {
        writer.writeStartElement(prefix, "method-params", "http://java.sun.com/xml/ns/javaee");
        writeMethodParams(writer, methodParams, context);
        writer.writeEndElement();
    }
    context.afterMarshal(namedMethod, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) MethodParams$JAXB.writeMethodParams(org.apache.openejb.jee.MethodParams$JAXB.writeMethodParams) MethodParams$JAXB.readMethodParams(org.apache.openejb.jee.MethodParams$JAXB.readMethodParams) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Example 8 with MethodParams

use of org.apache.openejb.jee.MethodParams in project tomee by apache.

the class AsyncMethod$JAXB method _read.

public static final AsyncMethod _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final AsyncMethod asyncMethod = new AsyncMethod();
    context.beforeUnmarshal(asyncMethod, LifecycleCallback.NONE);
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("async-methodType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, AsyncMethod.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, asyncMethod);
            asyncMethod.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 (("method-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: methodName
            final String methodNameRaw = elementReader.getElementAsString();
            final String methodName;
            try {
                methodName = Adapters.collapsedStringAdapterAdapter.unmarshal(methodNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            asyncMethod.methodName = methodName;
        } else if (("method-params" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: methodParams
            final MethodParams methodParams = readMethodParams(elementReader, context);
            asyncMethod.methodParams = methodParams;
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "method-name"), new QName("http://java.sun.com/xml/ns/javaee", "method-params"));
        }
    }
    context.afterUnmarshal(asyncMethod, LifecycleCallback.NONE);
    return asyncMethod;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) MethodParams$JAXB.writeMethodParams(org.apache.openejb.jee.MethodParams$JAXB.writeMethodParams) MethodParams$JAXB.readMethodParams(org.apache.openejb.jee.MethodParams$JAXB.readMethodParams) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 9 with MethodParams

use of org.apache.openejb.jee.MethodParams in project tomee by apache.

the class QueryMethod$JAXB method _read.

public static final QueryMethod _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final QueryMethod queryMethod = new QueryMethod();
    context.beforeUnmarshal(queryMethod, LifecycleCallback.NONE);
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("query-methodType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, QueryMethod.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, queryMethod);
            queryMethod.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 (("method-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: methodName
            final String methodNameRaw = elementReader.getElementAsString();
            final String methodName;
            try {
                methodName = Adapters.collapsedStringAdapterAdapter.unmarshal(methodNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            queryMethod.methodName = methodName;
        } else if (("method-params" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: methodParams
            final MethodParams methodParams = readMethodParams(elementReader, context);
            queryMethod.methodParams = methodParams;
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "method-name"), new QName("http://java.sun.com/xml/ns/javaee", "method-params"));
        }
    }
    context.afterUnmarshal(queryMethod, LifecycleCallback.NONE);
    return queryMethod;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) MethodParams$JAXB.writeMethodParams(org.apache.openejb.jee.MethodParams$JAXB.writeMethodParams) MethodParams$JAXB.readMethodParams(org.apache.openejb.jee.MethodParams$JAXB.readMethodParams) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 10 with MethodParams

use of org.apache.openejb.jee.MethodParams in project tomee by apache.

the class QueryMethod$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final QueryMethod queryMethod, RuntimeContext context) throws Exception {
    if (queryMethod == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (QueryMethod.class != queryMethod.getClass()) {
        context.unexpectedSubclass(writer, queryMethod, QueryMethod.class);
        return;
    }
    context.beforeMarshal(queryMethod, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = queryMethod.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(queryMethod, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: methodName
    final String methodNameRaw = queryMethod.methodName;
    String methodName = null;
    try {
        methodName = Adapters.collapsedStringAdapterAdapter.marshal(methodNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(queryMethod, "methodName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (methodName != null) {
        writer.writeStartElement(prefix, "method-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(methodName);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(queryMethod, "methodName");
    }
    // ELEMENT: methodParams
    final MethodParams methodParams = queryMethod.methodParams;
    if (methodParams != null) {
        writer.writeStartElement(prefix, "method-params", "http://java.sun.com/xml/ns/javaee");
        writeMethodParams(writer, methodParams, context);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(queryMethod, "methodParams");
    }
    context.afterMarshal(queryMethod, LifecycleCallback.NONE);
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) MethodParams$JAXB.writeMethodParams(org.apache.openejb.jee.MethodParams$JAXB.writeMethodParams) MethodParams$JAXB.readMethodParams(org.apache.openejb.jee.MethodParams$JAXB.readMethodParams) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Aggregations

MethodParams$JAXB.readMethodParams (org.apache.openejb.jee.MethodParams$JAXB.readMethodParams)8 MethodParams$JAXB.writeMethodParams (org.apache.openejb.jee.MethodParams$JAXB.writeMethodParams)8 RuntimeContext (org.metatype.sxc.jaxb.RuntimeContext)8 CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)7 QName (javax.xml.namespace.QName)4 Attribute (org.metatype.sxc.util.Attribute)4 XoXMLStreamReader (org.metatype.sxc.util.XoXMLStreamReader)4 MethodIntf$JAXB.parseMethodIntf (org.apache.openejb.jee.MethodIntf$JAXB.parseMethodIntf)2 MethodIntf$JAXB.toStringMethodIntf (org.apache.openejb.jee.MethodIntf$JAXB.toStringMethodIntf)2 MethodParams (org.apache.openejb.jee.MethodParams)2 Text$JAXB.readText (org.apache.openejb.jee.Text$JAXB.readText)2 Text$JAXB.writeText (org.apache.openejb.jee.Text$JAXB.writeText)2 OpenEJBException (org.apache.openejb.OpenEJBException)1 OpenEJBRuntimeException (org.apache.openejb.OpenEJBRuntimeException)1 InitMethodInfo (org.apache.openejb.assembler.classic.InitMethodInfo)1 MethodInfo (org.apache.openejb.assembler.classic.MethodInfo)1 NamedMethodInfo (org.apache.openejb.assembler.classic.NamedMethodInfo)1 RemoveMethodInfo (org.apache.openejb.assembler.classic.RemoveMethodInfo)1 EjbDeployment (org.apache.openejb.jee.oejb3.EjbDeployment)1