| java.lang.Object org.jboss.remoting.security.domain.DomainServerSocketFactoryService
create | public void create() throws Exception(Code) | | create the service, do expensive operations etc
|
createServerSocket | public ServerSocket createServerSocket() throws IOException(Code) | | Returns an unbound server socket. The socket is configured with the socket
options (such as accept timeout) given to this factory.
throws: java.io.IOException - |
createServerSocket | public ServerSocket createServerSocket(int i) throws IOException(Code) | | Returns a server socket bound to the specified port. The socket is configured
with the socket options (such as accept timeout) given to this factory.
Parameters: i - throws: java.io.IOException - |
createServerSocket | public ServerSocket createServerSocket(int i, int i1) throws IOException(Code) | | Returns a server socket bound to the specified port,
and uses the specified connection backlog. The socket is configured
with the socket options (such as accept timeout) given to this factory.
Parameters: i - Parameters: i1 - throws: java.io.IOException - |
createServerSocket | public ServerSocket createServerSocket(int i, int i1, InetAddress inetAddress) throws IOException(Code) | | Returns a server socket bound to the specified port, with a specified
listen backlog and local IP. The bindAddr argument can be used on a multi-homed
host for a ServerSocket that will only accept connect requests to one of its addresses.
The socket is configured with the socket options (such as accept timeout) given to this factory.
Parameters: i - Parameters: i1 - Parameters: inetAddress - throws: java.io.IOException - |
destroy | public void destroy()(Code) | | destroy the service, tear down
|
setSecurityDomain | public void setSecurityDomain(String securityDomain)(Code) | | |
start | public void start() throws Exception(Code) | | start the service, create is already called
|
stop | public void stop()(Code) | | stop the service
|
|
|