isEnabled(j2eeAppBean.getConfigContext(), j2eeAppBean.getName())) {
String id = j2eeAppBean.getName();
String location = j2eeAppBean.getLocation();
String resourceType = j2eeAppBean.getObjectType();
ApplicationRegistry registry = ApplicationRegistry.getInstance();
ClassLoader appLoader = registry.getClassLoaderForApplication(id);
if (appLoader == null) {
return null;
}
Application appDesc = registry.getApplication(appLoader);
// Check to see if this app had deployed successfully (4663247)
if(appDesc == null){
Object[] params = { id };
_logger.log(Level.SEVERE, "webcontainer.notLoaded", params);