Methods Summary |
---|
public com.sun.corba.ee.spi.transport.SocketInfo | getEndPointInfo()
return endpoint;
|
public com.sun.corba.ee.spi.ior.IOR | getIOR()Return the IOR.
return ior;
|
public CompoundSecMech | getMechanism()Return the selected compound security mechanism.
return mechanism;
|
public boolean | getSSLClientAuthenticationOccurred()Return true if SSL client authentication has happened, false otherwise.
return sslClientAuth;
|
public boolean | getSSLUsed()Return true if SSL was used to invoke the EJB.
return ssl;
|
public java.net.Socket | getSocket()Return the socket for this connection.
return socket;
|
public void | setEndPointInfo(com.sun.corba.ee.spi.transport.SocketInfo info)
endpoint = info;
|
public void | setIOR(com.sun.corba.ee.spi.ior.IOR ior)Set the IOR
this.ior = ior;
|
public void | setMechanism(CompoundSecMech mech)Set the mechanism used for this invocation.
mechanism = mech;
|
public void | setSSLClientAuthenticationOccurred(boolean val)Set true if SSL client authentication has happened.
sslClientAuth = val;
|
public void | setSSLUsed(boolean val)Set true if SSL was used to invoke the EJB.
ssl = val;
|
public void | setSocket(java.net.Socket s)Set the socket for this connection.
socket = s;
|
public java.lang.String | toString()
String s = "sslClientAuth=" + sslClientAuth;
s = s + " SSL=" + ssl;
s = s + " ENDPOINT=" + endpoint;
s = s + " mechanism=" + mechanism;
s = s + " IOR=" + ior;
s = s + " Socket=" + socket;
return s;
|