Package io.undertow.servlet.api
Interface ServletContainer
-
- All Known Implementing Classes:
ServletContainerImpl
public interface ServletContainer- Author:
- Stuart Douglas
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classServletContainer.Factory
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentManageraddDeployment(DeploymentInfo deployment)DeploymentManagergetDeployment(String deploymentName)DeploymentManagergetDeploymentByPath(String uripath)Collection<String>listDeployments()voidremoveDeployment(DeploymentInfo deploymentInfo)
-
-
-
Method Detail
-
listDeployments
Collection<String> listDeployments()
- Returns:
- The names of the deployments in this container
-
addDeployment
DeploymentManager addDeployment(DeploymentInfo deployment)
-
getDeployment
DeploymentManager getDeployment(String deploymentName)
-
removeDeployment
void removeDeployment(DeploymentInfo deploymentInfo)
-
getDeploymentByPath
DeploymentManager getDeploymentByPath(String uripath)
-
-