final ThreadFactoryService threadFactoryService = new ThreadFactoryService();
threadFactoryService.setThreadGroupName("Host Controller Service Threads");
serviceTarget.addService(threadFactoryServiceName, threadFactoryService).install();
final HostControllerExecutorService executorService = new HostControllerExecutorService();
serviceTarget.addService(HC_EXECUTOR_SERVICE_NAME, executorService)
.addDependency(threadFactoryServiceName, ThreadFactory.class, executorService.threadFactoryValue)
.install();
// Install required path services. (Only install those identified as required)
AbsolutePathService.addService(HostControllerEnvironment.HOME_DIR, environment.getHomeDir().getAbsolutePath(), serviceTarget);