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

« back to all changes in this revision

Viewing changes to tests/org/jboss/test/remoting/transport/bisocket/ssl/serversocketrefresh/SSLBisocketTestServer.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.test.remoting.transport.bisocket.ssl.serversocketrefresh;
2
 
 
3
 
import org.jboss.test.remoting.transport.socket.ssl.serversocketrefresh.TestServer;
4
 
 
5
 
 
6
 
/**
7
 
 * @author Michael Voss
8
 
 * @author <a href="ron.sigal@jboss.com">Ron Sigal</a>
9
 
 *
10
 
 */
11
 
public class SSLBisocketTestServer extends TestServer
12
 
{
13
 
   public static void main(String[] args)
14
 
   {
15
 
      TestServer server = new SSLBisocketTestServer();
16
 
      server.setUp();
17
 
      try
18
 
      {
19
 
         server.test();
20
 
      }
21
 
      catch (Exception e)
22
 
      {
23
 
         e.printStackTrace();
24
 
      }
25
 
   }
26
 
   
27
 
   
28
 
   protected String getTransport()
29
 
   {
30
 
      return "sslbisocket";
31
 
   }
32
 
}