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

« back to all changes in this revision

Viewing changes to src/tests/org/jboss/test/remoting/transport/rmi/ssl/config/SerializableServerSocketFactoryMBean.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.rmi.ssl.config;
 
2
 
 
3
import java.io.IOException;
 
4
import java.net.InetAddress;
 
5
import java.net.ServerSocket;
 
6
 
 
7
interface SerializableServerSocketFactoryMBean
 
8
{
 
9
 
 
10
   public abstract ServerSocket createServerSocket(int arg0) throws IOException;
 
11
 
 
12
   public abstract ServerSocket createServerSocket(int arg0, int arg1) throws IOException;
 
13
 
 
14
   public abstract ServerSocket createServerSocket(int arg0, int arg1, InetAddress arg2) throws IOException;
 
15
 
 
16
}
 
 
b'\\ No newline at end of file'