serviceTarget.addService(ProcessControllerConnectionService.SERVICE_NAME, processControllerClient).install();
// Thread Factory and Executor Services
final ServiceName threadFactoryServiceName = HC_SERVICE_NAME.append("thread-factory");
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();