.addDependency(NetworkInterfaceService.JBOSS_NETWORK_INTERFACE.append(mgmtNetwork), NetworkInterfaceBinding.class, dcService.getInterfaceInjector())
.addDependency(HostRegistryService.SERVICE_NAME, HostRegistryService.class, dcService.getHostRegistryInjector())
.install();
//Install the domain controller operation handler
DomainControllerOperationHandlerService operationHandlerService = new DomainControllerOperationHandlerService(isSlave);
serviceTarget.addService(DomainControllerOperationHandlerService.SERVICE_NAME, operationHandlerService)
.addDependency(ManagementCommunicationService.SERVICE_NAME, ManagementCommunicationService.class, operationHandlerService.getManagementCommunicationServiceValue())
.addDependency(DomainController.SERVICE_NAME, ModelController.class, operationHandlerService.getModelControllerValue())
.setInitialMode(ServiceController.Mode.ACTIVE)
.install();
}