All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.openejb.config.ConvertJMSConnectionFactoryDefinitions Maven / Gradle / Ivy

There is a newer version: 10.0.0-M3
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.openejb.config;

import org.apache.openejb.OpenEJBException;
import org.apache.openejb.config.sys.Resource;
import org.apache.openejb.jee.JMSConnectionFactory;
import org.apache.openejb.jee.JndiConsumer;
import org.apache.openejb.jee.KeyedCollection;
import org.apache.openejb.jee.Property;
import org.apache.openejb.util.PropertyPlaceHolderHelper;

import java.util.List;
import java.util.Properties;

public class ConvertJMSConnectionFactoryDefinitions extends BaseConvertDefinitions {
    @Override
    public AppModule deploy(final AppModule appModule) throws OpenEJBException {
        final List jndiConsumers = collectConsumers(appModule);
        final KeyedCollection factories = new KeyedCollection<>();
        for (final JndiConsumer consumer : jndiConsumers) {
            if (consumer != null) {
                factories.addAll(consumer.getJMSConnectionFactories());
            }
        }
        for (final JMSConnectionFactory factory : factories) {
            appModule.getResources().add(toResource(factory));
        }
        return appModule;
    }


    private Resource toResource(final JMSConnectionFactory factory) {
        final String name = cleanUpName(factory.getName());

        final Resource factoryResource = new Resource(name, javax.jms.ConnectionFactory.class.getName());

        factoryResource.setJndi(factory.getName().replaceFirst("java:", ""));
        factoryResource.setType(
            factory.getInterfaceName() != null && !factory.getInterfaceName().isEmpty() ?
                factory.getInterfaceName() : "javax.jms.ConnectionFactory");
        if (factory.getClassName() != null && !factory.getClassName().isEmpty()) {
            factoryResource.setClassName(factory.getClassName());
        }

        final Properties p = factoryResource.getProperties();
        put(p, AutoConfig.ORIGIN_FLAG, AutoConfig.ORIGIN_ANNOTATION);
        put(p, "JndiName", factoryResource.getJndi());
        if (factory.getResourceAdapter() != null && !factory.getResourceAdapter().isEmpty()) {
            put(p, "ResourceAdapter", factory.getResourceAdapter());
        }
        if (factory.isTransactional()) {
            put(p, "TransactionSupport", "xa");
        } else {
            put(p, "TransactionSupport", "none");
        }
        if (factory.getMaxPoolSize() != null && factory.getMaxPoolSize() > 0) {
            put(p, "PoolMaxSize", factory.getMaxPoolSize());
        }
        if (factory.getMinPoolSize() != null && factory.getMinPoolSize() > 0) {
            put(p, "PoolMinSize", factory.getMinPoolSize());
        }
        if (factory.getUser() != null && !factory.getUser().isEmpty()) {
            put(p, "UserName", factory.getUser());
        }
        if (factory.getPassword() != null && !factory.getPassword().isEmpty()) {
            put(p, "Password", factory.getUser());
        }
        if (factory.getClientId() != null && !factory.getClientId().isEmpty()) {
            put(p, "Clientid", factory.getUser());
        }

        setProperties(factory, p);
        return factoryResource;
    }

    private void setProperties(final JMSConnectionFactory d, final Properties p) {
        for (final Property property : d.getProperty()) {

            final String key = property.getName();
            final String value = property.getValue();

            put(p, key, value);
        }
    }

    private static void put(final Properties properties, final String key, final Object value) {
        if (key == null) {
            return;
        }
        if (value == null) {
            return;
        }
        properties.put(key, PropertyPlaceHolderHelper.value(String.valueOf(value)));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy