use of org.apache.openejb.jee.MethodParams$JAXB.readMethodParams 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;
}
use of org.apache.openejb.jee.MethodParams$JAXB.readMethodParams 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);
}
use of org.apache.openejb.jee.MethodParams$JAXB.readMethodParams 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);
}
use of org.apache.openejb.jee.MethodParams$JAXB.readMethodParams 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;
}
use of org.apache.openejb.jee.MethodParams$JAXB.readMethodParams 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;
}
Aggregations