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

« back to all changes in this revision

Viewing changes to src/org/jboss/remoting/security/SocketFactoryMBean.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.security;
2
 
 
3
 
import java.io.IOException;
4
 
import java.net.InetAddress;
5
 
import java.net.Socket;
6
 
import java.net.UnknownHostException;
7
 
 
8
 
/**
9
 
 * @author <a href="mailto:telrod@e2technologies.net">Tom Elrod</a>
10
 
 */
11
 
public interface SocketFactoryMBean
12
 
{
13
 
   public Socket createSocket(String host, int port) throws IOException, UnknownHostException;
14
 
 
15
 
   public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
16
 
         throws IOException, UnknownHostException;
17
 
 
18
 
   public Socket createSocket(InetAddress host, int port) throws IOException;
19
 
 
20
 
   public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort)
21
 
         throws IOException;
22
 
 
23
 
 
24
 
}