Class OSGiDeploymentListener
java.lang.Object
org.eclipse.jetty.osgi.OSGiDeploymentListener
- All Implemented Interfaces:
 EventListener, Deployer.Listener
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoidonDeployed(ContextHandler contextHandler) voidonDeploying(ContextHandler contextHandler) Event called when aContextHandleris added to theContextHandlerCollection.voidonFailure(ContextHandler contextHandler, Throwable cause) Event called when aContextHandlerisfailed.voidonUndeployed(ContextHandler contextHandler) voidonUndeploying(ContextHandler contextHandler) Event called when aContextHandleris removed from theContextHandlerCollection.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Deployer.Listener
onCreated, onRemoved, onStarted, onStarting, onStopped, onStopping 
- 
Constructor Details
- 
OSGiDeploymentListener
public OSGiDeploymentListener() 
 - 
 - 
Method Details
- 
onDeploying
Description copied from interface:Deployer.ListenerEvent called when aContextHandleris added to theContextHandlerCollection. AContextHandleris deployed when it is both added andstarted.- Specified by:
 onDeployingin interfaceDeployer.Listener- Parameters:
 contextHandler- TheContextHandleradded.
 - 
onDeployed
Description copied from interface:Deployer.Listener- Specified by:
 onDeployedin interfaceDeployer.Listener- Parameters:
 contextHandler- TheContextHandlerdeployed.
 - 
onUndeploying
Description copied from interface:Deployer.ListenerEvent called when aContextHandleris removed from theContextHandlerCollection. AContextHandleris undeployed when it is both removed andstopped.- Specified by:
 onUndeployingin interfaceDeployer.Listener- Parameters:
 contextHandler- TheContextHandlerundeploying.
 - 
onUndeployed
Description copied from interface:Deployer.Listener- Specified by:
 onUndeployedin interfaceDeployer.Listener- Parameters:
 contextHandler- TheContextHandlerundeployed.
 - 
onFailure
Description copied from interface:Deployer.ListenerEvent called when aContextHandlerisfailed.- Specified by:
 onFailurein interfaceDeployer.Listener- Parameters:
 contextHandler- TheContextHandlerthat failed.cause- The cause of the failure.
 
 -