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

« back to all changes in this revision

Viewing changes to src/tests/org/jboss/test/remoting/transport/bisocket/connection/BisocketConnectionCheckTestServer.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.test.remoting.transport.bisocket.connection;
 
2
 
 
3
import org.jboss.test.remoting.transport.socket.connection.SocketConnectionCheckTestServer;
 
4
 
 
5
/**
 
6
 * @author <a href="mailto:tom.elrod@jboss.com">Tom Elrod</a>
 
7
 * @author <a href="mailto:ron.sigal@jboss.com">Ron Sigal</a>
 
8
 */
 
9
public class BisocketConnectionCheckTestServer extends SocketConnectionCheckTestServer
 
10
{
 
11
   protected String getTransport()
 
12
   {
 
13
      return "bisocket";
 
14
   }
 
15
   
 
16
   protected int getPort()
 
17
   {
 
18
      return super.getPort() + 17;
 
19
   }
 
20
}