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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package org.jboss.remoting.transport.http;
2
 
 
3
 
import org.jboss.remoting.InvokerLocator;
4
 
import org.jboss.remoting.ServerInvoker;
5
 
import org.jboss.remoting.transport.ServerFactory;
6
 
import org.jboss.remoting.transport.coyote.CoyoteInvoker;
7
 
 
8
 
import java.util.Map;
9
 
 
10
 
/**
11
 
 * @author <a href="mailto:tom.elrod@jboss.com">Tom Elrod</a>
12
 
 */
13
 
public class TransportServerFactory implements ServerFactory
14
 
{
15
 
   public ServerInvoker createServerInvoker(InvokerLocator locator, Map config)
16
 
   {
17
 
      return new CoyoteInvoker(locator, config);
18
 
   }
19
 
 
20
 
   public boolean supportsSSL()
21
 
   {
22
 
      return false;
23
 
   }
24
 
}