public void callback(Context context, SuiteEvent event) throws Exception
{
DeployableContainer container = context.get(DeployableContainer.class);
Validate.stateNotNull(container, "No " + DeployableContainer.class.getName() + " found in context");
context.fire(new BeforeStart());
container.start(context);
context.fire(new AfterStart());
}