Package org.jboss.remoting.transport.http

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

package org.jboss.remoting.transport.http;

import org.jboss.remoting.InvokerLocator;
import org.jboss.remoting.ServerInvoker;
import org.jboss.remoting.transport.ServerFactory;
import org.jboss.remoting.transport.coyote.CoyoteInvoker;

import java.util.Map;

/**
* @author <a href="mailto:tom.elrod@jboss.com">Tom Elrod</a>
*/
public class TransportServerFactory implements ServerFactory
{
   public ServerInvoker createServerInvoker(InvokerLocator locator, Map config)
   {
      return new CoyoteInvoker(locator, config);
   }

   public boolean supportsSSL()
   {
      return false;
   }
}
TOP

Related Classes of org.jboss.remoting.transport.http.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.