Package org.jboss.as.controller
Interface ModelControllerServiceInitialization
public interface ModelControllerServiceInitialization
Internal extension point for core resource registrations.
- Author:
- Emanuel Muckenhuber
-
Method Summary
Modifier and TypeMethodDescriptionvoidinitializeDomain(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 Details
-
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
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.
-