DeploymentEvent
DeploymentEventListener
DeploymentEventManager
108109110111112113114
* @param req Deployment request object * @return DeploymentEvent */ private DeploymentEvent getPrePhaseEvent(DeploymentRequest req) { return new DeploymentEvent(DeploymentEventType.PRE_RES_CREATE, new DeploymentEventInfo(req)); }
116117118119120121122
/** * Event that will be broadcasted at the end of the phase * @return DeploymentEvent */ private DeploymentEvent getPostPhaseEvent(DeploymentRequest req) { return new DeploymentEvent(DeploymentEventType.POST_RES_CREATE, new DeploymentEventInfo(req)); }
236237238239240241242
* @param req Deployment request object * @return DeploymentEvent */ private DeploymentEvent getPrePhaseEvent(DeploymentRequest req) { return new DeploymentEvent(DeploymentEventType.PRE_ASSOCIATE, new DeploymentEventInfo(req)); }
245246247248249250251
* Event that will be broadcasted at the end of the phase * @return DeploymentEvent */ private DeploymentEvent getPostPhaseEvent(DeploymentRequest req) { return new DeploymentEvent(DeploymentEventType.POST_ASSOCIATE, new DeploymentEventInfo(req)); }
* @param req Deployment request object * @return DeploymentEvent */ private DeploymentEvent getPrePhaseEvent(DeploymentRequest req) { return new DeploymentEvent(DeploymentEventType.PRE_RES_DELETE, new DeploymentEventInfo(req)); }
/** * Event that will be broadcasted at the end of the phase * @return DeploymentEvent */ private DeploymentEvent getPostPhaseEvent(DeploymentRequest req) { return new DeploymentEvent(DeploymentEventType.POST_RES_DELETE, new DeploymentEventInfo(req)); }
158159160161162163164
* Event that will be broadcasted at the start of the phase * @param req DeploymentRequest object * @return DeploymentEvent **/ private DeploymentEvent getPrePhaseEvent(DeploymentRequest req) { return new DeploymentEvent(DeploymentEventType.PRE_DISASSOCIATE, new DeploymentEventInfo(req)); }
167168169170171172173
* Event that will be broadcasted at the end of the phase * @param req DeploymentRequest object * @return DeploymentEvent **/ private DeploymentEvent getPostPhaseEvent(DeploymentRequest req) { return new DeploymentEvent(DeploymentEventType.POST_DISASSOCIATE,new DeploymentEventInfo(req)); }