use of org.apache.openejb.jee.OutboundResourceAdapter in project tomee by apache.
the class ResourceAdapter$JAXB method _read.
public static final ResourceAdapter _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
// Check for xsi:nil
if (reader.isXsiNil()) {
return null;
}
if (context == null) {
context = new RuntimeContext();
}
final ResourceAdapter resourceAdapter = new ResourceAdapter();
context.beforeUnmarshal(resourceAdapter, LifecycleCallback.NONE);
List<ConfigProperty> configProperty = null;
List<AdminObject> adminObject = null;
List<SecurityPermission> securityPermission = null;
// Check xsi:type
final QName xsiType = reader.getXsiType();
if (xsiType != null) {
if (("resourceadapterType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
return context.unexpectedXsiType(reader, ResourceAdapter.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, resourceAdapter);
resourceAdapter.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 (("resourceadapter-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: resourceAdapterClass
final String resourceAdapterClassRaw = elementReader.getElementAsString();
final String resourceAdapterClass;
try {
resourceAdapterClass = Adapters.collapsedStringAdapterAdapter.unmarshal(resourceAdapterClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
resourceAdapter.resourceAdapterClass = resourceAdapterClass;
} else if (("config-property" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: configProperty
final ConfigProperty configPropertyItem = readConfigProperty(elementReader, context);
if (configProperty == null) {
configProperty = resourceAdapter.configProperty;
if (configProperty != null) {
configProperty.clear();
} else {
configProperty = new ArrayList<ConfigProperty>();
}
}
configProperty.add(configPropertyItem);
} else if (("outbound-resourceadapter" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: outboundResourceAdapter
final OutboundResourceAdapter outboundResourceAdapter = readOutboundResourceAdapter(elementReader, context);
resourceAdapter.outboundResourceAdapter = outboundResourceAdapter;
} else if (("inbound-resourceadapter" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: inboundResourceAdapter
final InboundResourceadapter inboundResourceAdapter = readInboundResourceadapter(elementReader, context);
resourceAdapter.inboundResourceAdapter = inboundResourceAdapter;
} else if (("adminobject" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: adminObject
final AdminObject adminObjectItem = readAdminObject(elementReader, context);
if (adminObject == null) {
adminObject = resourceAdapter.adminObject;
if (adminObject != null) {
adminObject.clear();
} else {
adminObject = new ArrayList<AdminObject>();
}
}
adminObject.add(adminObjectItem);
} else if (("security-permission" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: securityPermission
final SecurityPermission securityPermissionItem = readSecurityPermission(elementReader, context);
if (securityPermission == null) {
securityPermission = resourceAdapter.securityPermission;
if (securityPermission != null) {
securityPermission.clear();
} else {
securityPermission = new ArrayList<SecurityPermission>();
}
}
securityPermission.add(securityPermissionItem);
} else {
context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "resourceadapter-class"), new QName("http://java.sun.com/xml/ns/javaee", "config-property"), new QName("http://java.sun.com/xml/ns/javaee", "outbound-resourceadapter"), new QName("http://java.sun.com/xml/ns/javaee", "inbound-resourceadapter"), new QName("http://java.sun.com/xml/ns/javaee", "adminobject"), new QName("http://java.sun.com/xml/ns/javaee", "security-permission"));
}
}
if (configProperty != null) {
resourceAdapter.configProperty = configProperty;
}
if (adminObject != null) {
resourceAdapter.adminObject = adminObject;
}
if (securityPermission != null) {
resourceAdapter.securityPermission = securityPermission;
}
context.afterUnmarshal(resourceAdapter, LifecycleCallback.NONE);
return resourceAdapter;
}
Aggregations