Package org.jboss.remoting.transport.https

Source Code of org.jboss.remoting.transport.https.TransportServerFactory

/*    */ package org.jboss.remoting.transport.https;
/*    */
/*    */ import java.util.Map;
/*    */ import org.jboss.remoting.InvokerLocator;
/*    */ import org.jboss.remoting.ServerInvoker;
/*    */ import org.jboss.remoting.transport.ServerFactory;
/*    */ import org.jboss.remoting.transport.coyote.CoyoteInvoker;
/*    */
/*    */ public class TransportServerFactory
/*    */   implements ServerFactory
/*    */ {
/*    */   public ServerInvoker createServerInvoker(InvokerLocator locator, Map config)
/*    */   {
/* 17 */     return new CoyoteInvoker(locator, config);
/*    */   }
/*    */
/*    */   public boolean supportsSSL()
/*    */   {
/* 22 */     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.https.TransportServerFactory
* JD-Core Version:    0.6.0
*/
TOP

Related Classes of org.jboss.remoting.transport.https.TransportServerFactory

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.