bring back beforeApplicationLoaded

This commit is contained in:
Vladimir Krivosheev
2015-04-23 15:30:50 +02:00
parent 694797806b
commit 681a677ce9
@@ -182,6 +182,16 @@ public class ApplicationImpl extends PlatformComponentManagerImpl implements App
@Override
public void init() {
loadComponents();
for (ApplicationLoadListener listener : ApplicationLoadListener.EP_NAME.getExtensions()) {
try {
listener.beforeApplicationLoaded(this);
}
catch (Exception e) {
LOG.error(e);
}
}
super.init();
}