~ubuntu-branches/ubuntu/raring/libjboss-remoting-java/raring

« back to all changes in this revision

Viewing changes to src/org/jboss/remoting/transport/multiplex/TransportServerFactory.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20110909140103-o8ucrolqt5g25k57
Tags: upstream-2.5.3.SP1
ImportĀ upstreamĀ versionĀ 2.5.3.SP1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package org.jboss.remoting.transport.multiplex;
2
 
 
3
 
import org.jboss.remoting.InvokerLocator;
4
 
import org.jboss.remoting.ServerInvoker;
5
 
import org.jboss.remoting.transport.ServerFactory;
6
 
 
7
 
import java.io.IOException;
8
 
import java.util.Map;
9
 
 
10
 
/**
11
 
 * @author <a href="mailto:tom.elrod@jboss.com">Tom Elrod</a>
12
 
 * 
13
 
 * @deprecated As of release 2.4.0 the multiplex transport will no longer be actively supported.
14
 
 */
15
 
public class TransportServerFactory implements ServerFactory
16
 
{
17
 
   public ServerInvoker createServerInvoker(InvokerLocator locator, Map config)
18
 
         throws IOException
19
 
   {
20
 
      return new MultiplexServerInvoker(locator, config);
21
 
   }
22
 
 
23
 
   public boolean supportsSSL()
24
 
   {
25
 
      return false;
26
 
   }
27
 
}