1 17 package org.apache.servicemix.http; 18 19 20 public interface ContextManager { 21 22 public void init() throws Exception ; 23 24 public void shutDown() throws Exception ; 25 26 public void start() throws Exception ; 27 28 public void stop() throws Exception ; 29 30 public Object createContext(String strUrl, 31 HttpProcessor processor) throws Exception ; 32 33 public void remove(Object context) throws Exception ; 34 35 public void setConfiguration(HttpConfiguration configuration); 36 37 public HttpProcessor getMainProcessor(); 38 39 } 40 | Popular Tags |