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

org.jboss.as.ejb3.remote.JBossEJBClientXmlConfiguration Maven / Gradle / Ivy

The newest version!
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2012, Red Hat, Inc., and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

package org.jboss.as.ejb3.remote;

import org.jboss.ejb.client.DeploymentNodeSelector;
import org.jboss.ejb.client.EJBClientConfiguration;
import org.xnio.OptionMap;

import javax.security.auth.callback.CallbackHandler;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;

/**
 * @author Jaikiran Pai
 */
public class JBossEJBClientXmlConfiguration implements EJBClientConfiguration {

    private final Map clusterConfigs = new HashMap();
    private long invocationTimeout;
    private DeploymentNodeSelector deploymentNodeSelector = new LocalEJBReceiverPreferringDeploymentNodeSelector();

    @Override
    public String getEndpointName() {
        // The jboss-ejb-client.xml will *not* be used to create endpoints
        return null;
    }

    @Override
    public OptionMap getEndpointCreationOptions() {
        // The jboss-ejb-client.xml will *not* be used to create endpoints
        return OptionMap.EMPTY;
    }

    @Override
    public OptionMap getRemoteConnectionProviderCreationOptions() {
        // The jboss-ejb-client.xml will *not* be used to register connection providers
        return OptionMap.EMPTY;
    }

    @Override
    public CallbackHandler getCallbackHandler() {
        // The appropriate callback handler will either be available on the remote-outbound-connection
        // reference or in the cluster configuration of this client context
        return null;
    }

    @Override
    public Iterator getConnectionConfigurations() {
        // The jboss-ejb-client.xml will *not* be used for auto creating connections to remote servers.
        // Instead we let the remote-outbound-connection to handle the connection creation/configuration
        return Collections.EMPTY_SET.iterator();
    }

    @Override
    public Iterator getClusterConfigurations() {
        return this.clusterConfigs.values().iterator();
    }

    @Override
    public ClusterConfiguration getClusterConfiguration(String nodeName) {
        return this.clusterConfigs.get(nodeName);
    }

    @Override
    public long getInvocationTimeout() {
        return this.invocationTimeout;
    }

    @Override
    public long getReconnectTasksTimeout() {
        return 0;
    }

    @Override
    public DeploymentNodeSelector getDeploymentNodeSelector() {
        return this.deploymentNodeSelector;
    }

    public void addClusterConfiguration(final EJBClientClusterConfig clusterConfig) {
        this.clusterConfigs.put(clusterConfig.getClusterName(), clusterConfig);
    }

    public void setInvocationTimeout(final long invocationTimeout) {
        this.invocationTimeout = invocationTimeout;
    }

    public void setDeploymentNodeSelector(final DeploymentNodeSelector deploymentNodeSelector) {
        this.deploymentNodeSelector = deploymentNodeSelector;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy