fireEvent(type, false);
}
protected void fireEvent(LifeCycleEvent.LifeCycleEventType type, boolean force) throws JBIException {
if (listenerRegistry != null) {
LifeCycleEvent event = null;
for (LifeCycleListener listener : listenerRegistry.getListeners(LifeCycleListener.class)) {
if (event == null) {
event = new LifeCycleEvent(type, this, force);
}
listener.lifeCycleChanged(event);
}
}
}