1 45 package org.exolab.jms.net.http; 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 56 57 64 class HTTPSManagedConnection extends AbstractHTTPManagedConnection { 65 66 67 74 public HTTPSManagedConnection(Principal principal, HTTPRequestInfo info) 75 throws ResourceException { 76 super(principal, info); 77 } 78 79 89 public HTTPSManagedConnection(URI uri, Socket socket, 90 Authenticator authenticator, 91 PooledExecutor pool) 92 throws ResourceException { 93 super(uri, socket, authenticator, pool); 94 } 95 96 } 97 | Popular Tags |