Search in sources :

Example 1 with TransactionSupportType

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

the class OutboundResourceAdapter$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final OutboundResourceAdapter outboundResourceAdapter, RuntimeContext context) throws Exception {
    if (outboundResourceAdapter == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (OutboundResourceAdapter.class != outboundResourceAdapter.getClass()) {
        context.unexpectedSubclass(writer, outboundResourceAdapter, OutboundResourceAdapter.class);
        return;
    }
    context.beforeMarshal(outboundResourceAdapter, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = outboundResourceAdapter.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(outboundResourceAdapter, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: connectionDefinition
    final List<ConnectionDefinition> connectionDefinition = outboundResourceAdapter.connectionDefinition;
    if (connectionDefinition != null) {
        for (final ConnectionDefinition connectionDefinitionItem : connectionDefinition) {
            if (connectionDefinitionItem != null) {
                writer.writeStartElement(prefix, "connection-definition", "http://java.sun.com/xml/ns/javaee");
                writeConnectionDefinition(writer, connectionDefinitionItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: transactionSupport
    final TransactionSupportType transactionSupport = outboundResourceAdapter.transactionSupport;
    if (transactionSupport != null) {
        writer.writeStartElement(prefix, "transaction-support", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(toStringTransactionSupportType(outboundResourceAdapter, null, context, transactionSupport));
        writer.writeEndElement();
    }
    // ELEMENT: authenticationMechanism
    final List<AuthenticationMechanism> authenticationMechanism = outboundResourceAdapter.authenticationMechanism;
    if (authenticationMechanism != null) {
        for (final AuthenticationMechanism authenticationMechanismItem : authenticationMechanism) {
            if (authenticationMechanismItem != null) {
                writer.writeStartElement(prefix, "authentication-mechanism", "http://java.sun.com/xml/ns/javaee");
                writeAuthenticationMechanism(writer, authenticationMechanismItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: reauthenticationSupport
    final Boolean reauthenticationSupport = outboundResourceAdapter.reauthenticationSupport;
    if (reauthenticationSupport != null) {
        writer.writeStartElement(prefix, "reauthentication-support", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(Boolean.toString(reauthenticationSupport));
        writer.writeEndElement();
    }
    context.afterMarshal(outboundResourceAdapter, LifecycleCallback.NONE);
}
Also used : ConnectionDefinition$JAXB.readConnectionDefinition(org.apache.openejb.jee.ConnectionDefinition$JAXB.readConnectionDefinition) ConnectionDefinition$JAXB.writeConnectionDefinition(org.apache.openejb.jee.ConnectionDefinition$JAXB.writeConnectionDefinition) CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) TransactionSupportType$JAXB.parseTransactionSupportType(org.apache.openejb.jee.TransactionSupportType$JAXB.parseTransactionSupportType) TransactionSupportType$JAXB.toStringTransactionSupportType(org.apache.openejb.jee.TransactionSupportType$JAXB.toStringTransactionSupportType) AuthenticationMechanism$JAXB.writeAuthenticationMechanism(org.apache.openejb.jee.AuthenticationMechanism$JAXB.writeAuthenticationMechanism) AuthenticationMechanism$JAXB.readAuthenticationMechanism(org.apache.openejb.jee.AuthenticationMechanism$JAXB.readAuthenticationMechanism) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext)

Example 2 with TransactionSupportType

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

the class OutboundResourceAdapter$JAXB method _read.

public static final OutboundResourceAdapter _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final OutboundResourceAdapter outboundResourceAdapter = new OutboundResourceAdapter();
    context.beforeUnmarshal(outboundResourceAdapter, LifecycleCallback.NONE);
    List<ConnectionDefinition> connectionDefinition = null;
    List<AuthenticationMechanism> authenticationMechanism = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("outbound-resourceadapterType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, OutboundResourceAdapter.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, outboundResourceAdapter);
            outboundResourceAdapter.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 (("connection-definition" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: connectionDefinition
            final ConnectionDefinition connectionDefinitionItem = readConnectionDefinition(elementReader, context);
            if (connectionDefinition == null) {
                connectionDefinition = outboundResourceAdapter.connectionDefinition;
                if (connectionDefinition != null) {
                    connectionDefinition.clear();
                } else {
                    connectionDefinition = new ArrayList<ConnectionDefinition>();
                }
            }
            connectionDefinition.add(connectionDefinitionItem);
        } else if (("transaction-support" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: transactionSupport
            final TransactionSupportType transactionSupport = parseTransactionSupportType(elementReader, context, elementReader.getElementAsString());
            if (transactionSupport != null) {
                outboundResourceAdapter.transactionSupport = transactionSupport;
            }
        } else if (("authentication-mechanism" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: authenticationMechanism
            final AuthenticationMechanism authenticationMechanismItem = readAuthenticationMechanism(elementReader, context);
            if (authenticationMechanism == null) {
                authenticationMechanism = outboundResourceAdapter.authenticationMechanism;
                if (authenticationMechanism != null) {
                    authenticationMechanism.clear();
                } else {
                    authenticationMechanism = new ArrayList<AuthenticationMechanism>();
                }
            }
            authenticationMechanism.add(authenticationMechanismItem);
        } else if (("reauthentication-support" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: reauthenticationSupport
            final Boolean reauthenticationSupport = ("1".equals(elementReader.getElementAsString()) || "true".equals(elementReader.getElementAsString()));
            outboundResourceAdapter.reauthenticationSupport = reauthenticationSupport;
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "connection-definition"), new QName("http://java.sun.com/xml/ns/javaee", "transaction-support"), new QName("http://java.sun.com/xml/ns/javaee", "authentication-mechanism"), new QName("http://java.sun.com/xml/ns/javaee", "reauthentication-support"));
        }
    }
    if (connectionDefinition != null) {
        outboundResourceAdapter.connectionDefinition = connectionDefinition;
    }
    if (authenticationMechanism != null) {
        outboundResourceAdapter.authenticationMechanism = authenticationMechanism;
    }
    context.afterUnmarshal(outboundResourceAdapter, LifecycleCallback.NONE);
    return outboundResourceAdapter;
}
Also used : ConnectionDefinition$JAXB.readConnectionDefinition(org.apache.openejb.jee.ConnectionDefinition$JAXB.readConnectionDefinition) ConnectionDefinition$JAXB.writeConnectionDefinition(org.apache.openejb.jee.ConnectionDefinition$JAXB.writeConnectionDefinition) TransactionSupportType$JAXB.parseTransactionSupportType(org.apache.openejb.jee.TransactionSupportType$JAXB.parseTransactionSupportType) TransactionSupportType$JAXB.toStringTransactionSupportType(org.apache.openejb.jee.TransactionSupportType$JAXB.toStringTransactionSupportType) Attribute(org.metatype.sxc.util.Attribute) AuthenticationMechanism$JAXB.writeAuthenticationMechanism(org.apache.openejb.jee.AuthenticationMechanism$JAXB.writeAuthenticationMechanism) AuthenticationMechanism$JAXB.readAuthenticationMechanism(org.apache.openejb.jee.AuthenticationMechanism$JAXB.readAuthenticationMechanism) QName(javax.xml.namespace.QName) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 3 with TransactionSupportType

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

the class AppInfoBuilder method buildConnectorModules.

private void buildConnectorModules(final AppModule appModule, final AppInfo appInfo) throws OpenEJBException {
    final String appId = appModule.getModuleId();
    for (final ConnectorModule connectorModule : appModule.getConnectorModules()) {
        // 
        // DEVELOPERS NOTE:  if you change the id generation code here, you must change
        // the id generation code in AutoConfig$AppResources
        // 
        final Connector connector = connectorModule.getConnector();
        final ConnectorInfo connectorInfo = new ConnectorInfo();
        connectorInfo.description = connector.getDescription();
        connectorInfo.displayName = connector.getDisplayName();
        connectorInfo.path = connectorModule.getJarLocation();
        connectorInfo.moduleId = connectorModule.getModuleId();
        connectorInfo.watchedResources.addAll(connectorModule.getWatchedResources());
        connectorInfo.validationInfo = ValidatorBuilder.getInfo(connectorModule.getValidationConfig());
        connectorInfo.uniqueId = connectorModule.getUniqueId();
        connectorInfo.mbeans = connectorModule.getMbeans();
        final List<URL> libraries = connectorModule.getLibraries();
        for (final URL url : libraries) {
            final File file = toFile(url);
            try {
                connectorInfo.libs.add(file.getCanonicalPath());
            } catch (final IOException e) {
                throw new IllegalArgumentException("Invalid application lib path " + file.getAbsolutePath());
            }
        }
        final ResourceAdapter resourceAdapter = connector.getResourceAdapter();
        if (resourceAdapter.getResourceAdapterClass() != null) {
            final String id = this.getId(connectorModule);
            final String className = resourceAdapter.getResourceAdapterClass();
            final ServiceProvider provider = new ServiceProvider(className, id, "Resource");
            provider.getTypes().add(className);
            ServiceUtils.registerServiceProvider(appId, provider);
            final Resource resource = new Resource(id, className, appId + "#" + id);
            for (final ConfigProperty property : resourceAdapter.getConfigProperty()) {
                final String name = property.getConfigPropertyName();
                final String value = property.getConfigPropertyValue();
                if (value != null) {
                    resource.getProperties().setProperty(name, value);
                }
            }
            connectorInfo.resourceAdapter = this.configFactory.configureService(resource, ResourceInfo.class);
        }
        final OutboundResourceAdapter outbound = resourceAdapter.getOutboundResourceAdapter();
        if (outbound != null) {
            String transactionSupport = "none";
            final TransactionSupportType transactionSupportType = outbound.getTransactionSupport();
            if (transactionSupportType != null) {
                switch(transactionSupportType) {
                    case LOCAL_TRANSACTION:
                        transactionSupport = "local";
                        break;
                    case NO_TRANSACTION:
                        transactionSupport = "none";
                        break;
                    case XA_TRANSACTION:
                        transactionSupport = "xa";
                        break;
                }
            }
            for (final ConnectionDefinition connection : outbound.getConnectionDefinition()) {
                final String id = this.getId(connection, outbound, connectorModule);
                final String className = connection.getManagedConnectionFactoryClass();
                final String type = connection.getConnectionFactoryInterface();
                final ServiceProvider provider = new ServiceProvider(className, id, "Resource");
                provider.getTypes().add(type);
                ServiceUtils.registerServiceProvider(appId, provider);
                final Resource resource = new Resource(id, type, appId + "#" + id);
                final Properties properties = resource.getProperties();
                for (final ConfigProperty property : connection.getConfigProperty()) {
                    final String name = property.getConfigPropertyName();
                    final String value = property.getConfigPropertyValue();
                    if (value != null) {
                        properties.setProperty(name, value);
                    }
                }
                properties.setProperty("TransactionSupport", transactionSupport);
                if (connectorInfo.resourceAdapter != null) {
                    properties.setProperty("ResourceAdapter", connectorInfo.resourceAdapter.id);
                }
                final ResourceInfo resourceInfo = this.configFactory.configureService(resource, ResourceInfo.class);
                connectorInfo.outbound.add(resourceInfo);
            }
        }
        final InboundResourceadapter inbound = resourceAdapter.getInboundResourceAdapter();
        if (inbound != null) {
            for (final MessageListener messageListener : inbound.getMessageAdapter().getMessageListener()) {
                final String id = this.getId(messageListener, inbound, connectorModule);
                final Container container = new Container(id, "MESSAGE", null);
                final Properties properties = container.getProperties();
                properties.setProperty("ResourceAdapter", connectorInfo.resourceAdapter.id);
                properties.setProperty("MessageListenerInterface", messageListener.getMessageListenerType());
                properties.setProperty("ActivationSpecClass", messageListener.getActivationSpec().getActivationSpecClass());
                final MdbContainerInfo mdbContainerInfo = this.configFactory.configureService(container, MdbContainerInfo.class);
                connectorInfo.inbound.add(mdbContainerInfo);
            }
        }
        for (final AdminObject adminObject : resourceAdapter.getAdminObject()) {
            final String id = this.getId(adminObject, resourceAdapter, connectorModule);
            final String className = adminObject.getAdminObjectClass();
            final String type = adminObject.getAdminObjectInterface();
            final ServiceProvider provider = new ServiceProvider(className, id, "Resource");
            provider.getTypes().add(type);
            ServiceUtils.registerServiceProvider(appId, provider);
            final Resource resource = new Resource(id, type, appId + "#" + id);
            final Properties properties = resource.getProperties();
            for (final ConfigProperty property : adminObject.getConfigProperty()) {
                final String name = property.getConfigPropertyName();
                final String value = property.getConfigPropertyValue();
                if (value != null) {
                    properties.setProperty(name, value);
                }
            }
            final ResourceInfo resourceInfo = this.configFactory.configureService(resource, ResourceInfo.class);
            connectorInfo.adminObject.add(resourceInfo);
        }
        appInfo.connectors.add(connectorInfo);
    }
}
Also used : Connector(org.apache.openejb.jee.Connector) ResourceInfo(org.apache.openejb.assembler.classic.ResourceInfo) ConnectionDefinition(org.apache.openejb.jee.ConnectionDefinition) ConnectorInfo(org.apache.openejb.assembler.classic.ConnectorInfo) TransactionSupportType(org.apache.openejb.jee.TransactionSupportType) Resource(org.apache.openejb.config.sys.Resource) MessageListener(org.apache.openejb.jee.MessageListener) IOException(java.io.IOException) Properties(java.util.Properties) URL(java.net.URL) Container(org.apache.openejb.config.sys.Container) ServiceProvider(org.apache.openejb.config.sys.ServiceProvider) ConfigProperty(org.apache.openejb.jee.ConfigProperty) MdbContainerInfo(org.apache.openejb.assembler.classic.MdbContainerInfo) OutboundResourceAdapter(org.apache.openejb.jee.OutboundResourceAdapter) ResourceAdapter(org.apache.openejb.jee.ResourceAdapter) InboundResourceadapter(org.apache.openejb.jee.InboundResourceadapter) URLs.toFile(org.apache.openejb.util.URLs.toFile) File(java.io.File) OutboundResourceAdapter(org.apache.openejb.jee.OutboundResourceAdapter) AdminObject(org.apache.openejb.jee.AdminObject)

Aggregations

AuthenticationMechanism$JAXB.readAuthenticationMechanism (org.apache.openejb.jee.AuthenticationMechanism$JAXB.readAuthenticationMechanism)2 AuthenticationMechanism$JAXB.writeAuthenticationMechanism (org.apache.openejb.jee.AuthenticationMechanism$JAXB.writeAuthenticationMechanism)2 ConnectionDefinition$JAXB.readConnectionDefinition (org.apache.openejb.jee.ConnectionDefinition$JAXB.readConnectionDefinition)2 ConnectionDefinition$JAXB.writeConnectionDefinition (org.apache.openejb.jee.ConnectionDefinition$JAXB.writeConnectionDefinition)2 TransactionSupportType$JAXB.parseTransactionSupportType (org.apache.openejb.jee.TransactionSupportType$JAXB.parseTransactionSupportType)2 TransactionSupportType$JAXB.toStringTransactionSupportType (org.apache.openejb.jee.TransactionSupportType$JAXB.toStringTransactionSupportType)2 RuntimeContext (org.metatype.sxc.jaxb.RuntimeContext)2 File (java.io.File)1 IOException (java.io.IOException)1 URL (java.net.URL)1 Properties (java.util.Properties)1 CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)1 QName (javax.xml.namespace.QName)1 ConnectorInfo (org.apache.openejb.assembler.classic.ConnectorInfo)1 MdbContainerInfo (org.apache.openejb.assembler.classic.MdbContainerInfo)1 ResourceInfo (org.apache.openejb.assembler.classic.ResourceInfo)1 Container (org.apache.openejb.config.sys.Container)1 Resource (org.apache.openejb.config.sys.Resource)1 ServiceProvider (org.apache.openejb.config.sys.ServiceProvider)1 AdminObject (org.apache.openejb.jee.AdminObject)1