mirror of https://github.com/apache/activemq.git
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:
parent
0e0ecf3cf6
commit
72f1594b39
|
@ -30,6 +30,7 @@ import org.mortbay.jetty.servlet.ServletHolder;
|
||||||
import org.mortbay.jetty.servlet.ServletMapping;
|
import org.mortbay.jetty.servlet.ServletMapping;
|
||||||
import org.mortbay.jetty.servlet.SessionHandler;
|
import org.mortbay.jetty.servlet.SessionHandler;
|
||||||
|
|
||||||
|
import java.net.InetSocketAddress;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -115,4 +116,8 @@ public class HttpTransportServer extends TransportServerSupport {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public InetSocketAddress getSocketAddress() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue