Interface NetworkServer
-
public interface NetworkServer
Provides access to the information of the network server.- Author:
- K. Benedyczak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deployEndpoint(WebAppEndpointInstance endpoint)
void
deployHandler(org.eclipse.jetty.servlet.ServletContextHandler sharedHandler, String endpointId)
Set<String>
getUsedContextPaths()
void
undeployAllHandlers()
void
undeployEndpoint(String id)
void
undeployHandler(String contextPath)
-
-
-
Method Detail
-
deployEndpoint
void deployEndpoint(WebAppEndpointInstance endpoint) throws EngineException
- Throws:
EngineException
-
undeployEndpoint
void undeployEndpoint(String id) throws EngineException
- Throws:
EngineException
-
deployHandler
void deployHandler(org.eclipse.jetty.servlet.ServletContextHandler sharedHandler, String endpointId) throws EngineException
- Throws:
EngineException
-
undeployHandler
void undeployHandler(String contextPath) throws EngineException
- Throws:
EngineException
-
undeployAllHandlers
void undeployAllHandlers() throws EngineException
- Throws:
EngineException
-
-