Package org.jboss.remoting.transport.sslservlet

Source Code of org.jboss.remoting.transport.sslservlet.TransportClientFactory

/*    */ package org.jboss.remoting.transport.sslservlet;
/*    */
/*    */ import java.io.IOException;
/*    */ import java.util.Map;
/*    */ import org.jboss.remoting.InvokerLocator;
/*    */ import org.jboss.remoting.transport.ClientFactory;
/*    */ import org.jboss.remoting.transport.ClientInvoker;
/*    */ import org.jboss.remoting.transport.http.ssl.HTTPSClientInvoker;
/*    */
/*    */ public class TransportClientFactory
/*    */   implements ClientFactory
/*    */ {
/*    */   public ClientInvoker createClientInvoker(InvokerLocator locator, Map config)
/*    */     throws IOException
/*    */   {
/* 39 */     return new HTTPSClientInvoker(locator, config);
/*    */   }
/*    */
/*    */   public boolean supportsSSL()
/*    */   {
/* 44 */     return true;
/*    */   }
/*    */ }

/* Location:           /home/mnovotny/projects/EMBEDDED_JBOSS_BETA3_COMMUNITY/embedded/output/lib/embedded-jboss/lib/jboss-embedded-all.jar
* Qualified Name:     org.jboss.remoting.transport.sslservlet.TransportClientFactory
* JD-Core Version:    0.6.0
*/
TOP

Related Classes of org.jboss.remoting.transport.sslservlet.TransportClientFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.