Added a way to get the socket address that a transport server is accepting connection on. Needed by gbean modules.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@388208 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-03-23 16:49:46 +00:00
parent 0e0ecf3cf6
commit 72f1594b39
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,7 @@ import org.mortbay.jetty.servlet.ServletHolder;
import org.mortbay.jetty.servlet.ServletMapping;
import org.mortbay.jetty.servlet.SessionHandler;
import java.net.InetSocketAddress;
import java.net.URI;
/**
@ -115,4 +116,8 @@ public class HttpTransportServer extends TransportServerSupport {
}
}
public InetSocketAddress getSocketAddress() {
return null;
}
}