All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.remoting.transport.https.TransportServerFactory Maven / Gradle / Ivy

There is a newer version: 5.0.29.Final
Show newest version
package org.jboss.remoting.transport.https;

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 Tom Elrod
 */
public class TransportServerFactory implements ServerFactory
{
   public ServerInvoker createServerInvoker(InvokerLocator locator, Map config)
   {
      return new CoyoteInvoker(locator, config);
   }

   public boolean supportsSSL()
   {
      return true;
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy