org.jboss.as.clustering.controller.Operations.createMapRemoveOperation()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(115)

本文整理了Java中org.jboss.as.clustering.controller.Operations.createMapRemoveOperation()方法的一些代码示例,展示了Operations.createMapRemoveOperation()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Operations.createMapRemoveOperation()方法的具体详情如下:
包路径:org.jboss.as.clustering.controller.Operations
类名称:Operations
方法名:createMapRemoveOperation

Operations.createMapRemoveOperation介绍

暂无

代码示例

代码示例来源:origin: wildfly/wildfly

protected static ModelNode getProtocolRemovePropertyOperation(String stackName, String protocolName, String propertyName) {
  return Operations.createMapRemoveOperation(getProtocolAddress(stackName, protocolName), AbstractProtocolResourceDefinition.Attribute.PROPERTIES, propertyName);
}

代码示例来源:origin: wildfly/wildfly

protected static ModelNode getTransportRemovePropertyOperation(String stackName, String type, String propertyName) {
  return Operations.createMapRemoveOperation(getTransportAddress(stackName, type), AbstractProtocolResourceDefinition.Attribute.PROPERTIES, propertyName);
}

代码示例来源:origin: wildfly/wildfly

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    context.removeResource(PathAddress.EMPTY_ADDRESS);
    String name = context.getCurrentAddressValue();
    PathAddress protocolAddress = context.getCurrentAddress().getParent();
    ModelNode putOperation = Operations.createMapRemoveOperation(protocolAddress, AbstractProtocolResourceDefinition.Attribute.PROPERTIES, name);
    context.addStep(putOperation, MapOperations.MAP_REMOVE_HANDLER, context.getCurrentStage());
  }
};

代码示例来源:origin: wildfly/wildfly

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    context.removeResource(PathAddress.EMPTY_ADDRESS);
    String name = context.getCurrentAddressValue();
    PathAddress storeAddress = context.getCurrentAddress().getParent();
    ModelNode putOperation = Operations.createMapRemoveOperation(storeAddress, StoreResourceDefinition.Attribute.PROPERTIES, name);
    context.addStep(putOperation, MapOperations.MAP_REMOVE_HANDLER, context.getCurrentStage());
  }
};

代码示例来源:origin: org.wildfly/wildfly-clustering-infinispan-extension

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    context.removeResource(PathAddress.EMPTY_ADDRESS);
    String name = context.getCurrentAddressValue();
    PathAddress storeAddress = context.getCurrentAddress().getParent();
    ModelNode putOperation = Operations.createMapRemoveOperation(storeAddress, StoreResourceDefinition.Attribute.PROPERTIES, name);
    context.addStep(putOperation, MapOperations.MAP_REMOVE_HANDLER, context.getCurrentStage());
  }
};

代码示例来源:origin: org.jboss.eap/wildfly-clustering-jgroups-extension

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    context.removeResource(PathAddress.EMPTY_ADDRESS);
    String name = context.getCurrentAddressValue();
    PathAddress protocolAddress = context.getCurrentAddress().getParent();
    ModelNode putOperation = Operations.createMapRemoveOperation(protocolAddress, AbstractProtocolResourceDefinition.Attribute.PROPERTIES, name);
    context.addStep(putOperation, MapOperations.MAP_REMOVE_HANDLER, context.getCurrentStage());
  }
};

相关文章