org.jboss.naming.remote.client.CurrentEjbClientConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-remote-naming Show documentation
Show all versions of jboss-remote-naming Show documentation
Library for remote naming (JNDI) with JBoss AS
package org.jboss.naming.remote.client;
import org.jboss.remoting3.Connection;
/**
* Abstraction around the ejb client context, to get around class loading issues.
*
*
* @author Stuart Douglas
*/
public final class CurrentEjbClientConnection {
private volatile Connection connection;
public Connection getConnection() {
return connection;
}
public void setConnection(final Connection connection) {
this.connection = connection;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy