static void updateHttpManagementService(
     final OperationContext context,
     final ModelNode subModel,
     final ServiceVerificationHandler verificationHandler)
     throws OperationFailedException {
   HttpManagementRemoveHandler.removeHttpManagementService(context);
   HttpManagementAddHandler.installHttpManagementConnector(
       context, subModel, context.getServiceTarget(), verificationHandler, null, false);
 }
 @Override
 protected void performRuntime(
     final OperationContext context,
     final ModelNode operation,
     final ModelNode model,
     final ServiceVerificationHandler verificationHandler,
     final List<ServiceController<?>> newControllers)
     throws OperationFailedException {
   installHttpManagementConnector(
       context, model, context.getServiceTarget(), verificationHandler, newControllers);
 }