Commit 0f5eb990 authored by Alex Wenckus's avatar Alex Wenckus Committed by alex

Cleanup

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6795 b35dd754-fafc-0310-a699-88a17e54d16e
parent 174e4068
......@@ -20,10 +20,8 @@ import org.jivesoftware.util.*;
import org.jivesoftware.wildfire.net.SSLConfig;
import org.jivesoftware.wildfire.XMPPServer;
import javax.servlet.http.HttpServlet;
import javax.net.ssl.SSLServerSocketFactory;
import java.util.Map;
import java.util.HashMap;
import java.util.List;
import java.security.KeyStore;
import java.security.cert.X509Certificate;
......@@ -169,19 +167,6 @@ public final class HttpBindManager {
return httpBindServer != null && httpBindServer.isRunning();
}
/**
* Returns all the servlets that are part of the http-bind service.
*
* @return all the servlets that are part of the http-bind service.
*/
public Map<HttpServlet, String> getServlets() {
Map<HttpServlet, String> servlets = new HashMap<HttpServlet, String>();
servlets.put(new ResourceServlet(), "/http-bind/js/");
return servlets;
}
public String getHttpBindUnsecureAddress() {
return "http://" + XMPPServer.getInstance().getServerInfo().getName() + ":" +
bindPort + "/http-bind/";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment