Interface NetworkServer
-
public interface NetworkServerProvides access to the information of the network server.- Author:
- K. Benedyczak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeployEndpoint(WebAppEndpointInstance endpoint)voiddeployHandler(org.eclipse.jetty.servlet.ServletContextHandler sharedHandler)java.util.Set<java.lang.String>getUsedContextPaths()voidundeployAllHandlers()voidundeployEndpoint(java.lang.String id)voidundeployHandler(java.lang.String contextPath)
-
-
-
Method Detail
-
deployEndpoint
void deployEndpoint(WebAppEndpointInstance endpoint) throws pl.edu.icm.unity.exceptions.EngineException
- Throws:
pl.edu.icm.unity.exceptions.EngineException
-
undeployEndpoint
void undeployEndpoint(java.lang.String id) throws pl.edu.icm.unity.exceptions.EngineException- Throws:
pl.edu.icm.unity.exceptions.EngineException
-
deployHandler
void deployHandler(org.eclipse.jetty.servlet.ServletContextHandler sharedHandler) throws pl.edu.icm.unity.exceptions.EngineException- Throws:
pl.edu.icm.unity.exceptions.EngineException
-
undeployHandler
void undeployHandler(java.lang.String contextPath) throws pl.edu.icm.unity.exceptions.EngineException- Throws:
pl.edu.icm.unity.exceptions.EngineException
-
undeployAllHandlers
void undeployAllHandlers() throws pl.edu.icm.unity.exceptions.EngineException- Throws:
pl.edu.icm.unity.exceptions.EngineException
-
getUsedContextPaths
java.util.Set<java.lang.String> getUsedContextPaths()
-
-