1 45 package org.exolab.jms.net.tcp; 46 47 import java.net.Socket ; 48 import java.security.Principal ; 49 50 import EDU.oswego.cs.dl.util.concurrent.PooledExecutor; 51 52 import org.exolab.jms.net.connector.Authenticator; 53 import org.exolab.jms.net.connector.ResourceException; 54 import org.exolab.jms.net.uri.URI; 55 import org.exolab.jms.net.socket.SocketManagedConnection; 56 import org.exolab.jms.net.socket.SocketRequestInfo; 57 58 59 66 class TCPManagedConnection extends SocketManagedConnection { 67 68 75 public TCPManagedConnection(Principal principal, SocketRequestInfo info) 76 throws ResourceException { 77 super(principal, info); 78 } 79 80 90 public TCPManagedConnection(URI uri, Socket socket, 91 Authenticator authenticator, 92 PooledExecutor pool) 93 throws ResourceException { 94 super(uri, socket, authenticator, pool); 95 } 96 97 } 98 | Popular Tags |