Package org.fenrir.yggdrasil.core.definition

Examples of org.fenrir.yggdrasil.core.definition.ModuleDefinition


        catch(Exception e){
          log.error("Error recuperant la definició de l'aplicació: {}", e.getMessage(), e);
          throw new ApplicationException("Error recuperant la definició de l'aplicació: " + e.getMessage(), e);
        }
        // Inicialització dels serveis bàsics
        ModuleDefinition moduleDefinition = new ModuleDefinition();
        moduleDefinition.setId(CoreStartupModule.ID);
        moduleDefinition.setClassName(CoreStartupModule.class.getName());
        moduleDefinition.setExecutionContext(CoreConstants.EXECUTION_CONTEXT_STARTUP);
        applicationContext.getPluginRegistry().addModuleDefinition(moduleDefinition);
        applicationContext.configureContext(CoreConstants.EXECUTION_CONTEXT_STARTUP);
       
        // S'especifica directament com a listener perquè la classe Application no està gestionada per Guice
        IEventNotificationService eventNotificationService = (IEventNotificationService)applicationContext.getRegisteredComponent(IEventNotificationService.class);
View Full Code Here

TOP

Related Classes of org.fenrir.yggdrasil.core.definition.ModuleDefinition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.