.install();
}
// Add the server to host operation handler
final ServerToHostOperationHandler serverToHost = new ServerToHostOperationHandler();
serviceTarget.addService(ServerToHostOperationHandler.SERVICE_NAME, serverToHost)
.addDependency(ServerInventoryService.SERVICE_NAME, ManagedServerLifecycleCallback.class, serverToHost.getCallback())
.addDependency(ManagementCommunicationService.SERVICE_NAME, ManagementCommunicationService.class, new ManagementCommunicationServiceInjector(serverToHost))
.install();
}