Package org.jboss.as.controller
Interface ModelControllerServiceInitialization
-
public interface ModelControllerServiceInitializationInternal extension point for core resource registrations.- Author:
- Emanuel Muckenhuber
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinitializeDomain(org.jboss.msc.service.ServiceTarget target, ManagementModel managementModel)Initialize the domain controller.voidinitializeHost(org.jboss.msc.service.ServiceTarget target, ManagementModel managementModel, String hostName, ProcessType processType)Initialize a host controller.voidinitializeStandalone(org.jboss.msc.service.ServiceTarget target, ManagementModel managementModel, ProcessType processType)Initialize a standalone server.
-
-
-
Method Detail
-
initializeStandalone
void initializeStandalone(org.jboss.msc.service.ServiceTarget target, ManagementModel managementModel, ProcessType processType)Initialize a standalone server.- Parameters:
target- the service targetmanagementModel- the management modelprocessType- The ProcessType used to identify what type of server we are running in.
-
initializeDomain
void initializeDomain(org.jboss.msc.service.ServiceTarget target, ManagementModel managementModel)Initialize the domain controller.- Parameters:
target- the service targetmanagementModel- the management model
-
initializeHost
void initializeHost(org.jboss.msc.service.ServiceTarget target, ManagementModel managementModel, String hostName, ProcessType processType)Initialize a host controller.- Parameters:
target- the service targetmanagementModel- the management modelhostName- the name of the hostprocessType- The ProcessType that to identify what type of server we are running in.
-
-