Interface Deployer
- All Known Implementing Classes:
 StandardDeployer
Deployer for ContextHandlers
- 
Nested Class Summary
Nested Classes - 
Method Summary
Modifier and TypeMethodDescriptionvoiddeploy(ContextHandler contextHandler) Deploy a ContextHandler to the server, and start it if appropriate.default voidredeploy(ContextHandler oldContextHandler, ContextHandler newContextHandler) Redeploy a ContextHandler to the server, and start it if appropriate.voidundeploy(ContextHandler contextHandler) Undeploy and stop a ContextHandler. 
- 
Method Details
- 
deploy
@ManagedOperation(value="Deploy the ContextHandler", impact="ACTION") void deploy(ContextHandler contextHandler) Deploy a ContextHandler to the server, and start it if appropriate.- Parameters:
 contextHandler- theContextHandlerto deploy.
 - 
redeploy
@ManagedOperation(value="Redeploy the ContextHandler", impact="ACTION") default void redeploy(ContextHandler oldContextHandler, ContextHandler newContextHandler) Redeploy a ContextHandler to the server, and start it if appropriate. If possible, this is done atomically without any period of no handler being deployed. However, it maybe implemented as anundeploy(ContextHandler)followed by adeploy(ContextHandler)- Parameters:
 oldContextHandler- theContextHandlerto undeploy.newContextHandler- theContextHandlerto deploy.
 - 
undeploy
@ManagedOperation(value="Undeploy the ContextHandler", impact="ACTION") void undeploy(ContextHandler contextHandler) Undeploy and stop a ContextHandler.- Parameters:
 contextHandler- theContextHandlerto undeploy.
 
 -