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

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

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

Operations.createMapPutOperation介绍

暂无

代码示例

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

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

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

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

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

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    context.createResource(PathAddress.EMPTY_ADDRESS);
    String name = context.getCurrentAddressValue();
    String value = operation.get(VALUE.getName()).asString();
    PathAddress storeAddress = context.getCurrentAddress().getParent();
    ModelNode putOperation = Operations.createMapPutOperation(storeAddress, StoreResourceDefinition.Attribute.PROPERTIES, name, value);
    context.addStep(putOperation, MapOperations.MAP_PUT_HANDLER, context.getCurrentStage());
  }
};

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

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    context.addResource(PathAddress.EMPTY_ADDRESS, PlaceholderResource.INSTANCE);
    String name = context.getCurrentAddressValue();
    String value = operation.get(VALUE.getName()).asString();
    PathAddress protocolAddress = context.getCurrentAddress().getParent();
    ModelNode putOperation = Operations.createMapPutOperation(protocolAddress, AbstractProtocolResourceDefinition.Attribute.PROPERTIES, name, value);
    context.addStep(putOperation, MapOperations.MAP_PUT_HANDLER, context.getCurrentStage());
  }
};

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

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    PathAddress storeAddress = context.getCurrentAddress().getParent();
    String key = context.getCurrentAddressValue();
    String value = Operations.getAttributeValue(operation).asString();
    ModelNode putOperation = Operations.createMapPutOperation(storeAddress, StoreResourceDefinition.Attribute.PROPERTIES, key, value);
    context.addStep(putOperation, MapOperations.MAP_PUT_HANDLER, context.getCurrentStage());
  }
};

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

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    PathAddress protocolAddress = context.getCurrentAddress().getParent();
    String key = context.getCurrentAddressValue();
    String value = Operations.getAttributeValue(operation).asString();
    ModelNode putOperation = Operations.createMapPutOperation(protocolAddress, AbstractProtocolResourceDefinition.Attribute.PROPERTIES, key, value);
    context.addStep(putOperation, MapOperations.MAP_PUT_HANDLER, context.getCurrentStage());
  }
};

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

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    context.addResource(PathAddress.EMPTY_ADDRESS, PlaceholderResource.INSTANCE);
    String name = context.getCurrentAddressValue();
    String value = operation.get(VALUE.getName()).asString();
    PathAddress protocolAddress = context.getCurrentAddress().getParent();
    ModelNode putOperation = Operations.createMapPutOperation(protocolAddress, AbstractProtocolResourceDefinition.Attribute.PROPERTIES, name, value);
    context.addStep(putOperation, MapOperations.MAP_PUT_HANDLER, context.getCurrentStage());
  }
};

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

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    context.createResource(PathAddress.EMPTY_ADDRESS);
    String name = context.getCurrentAddressValue();
    String value = operation.get(VALUE.getName()).asString();
    PathAddress storeAddress = context.getCurrentAddress().getParent();
    ModelNode putOperation = Operations.createMapPutOperation(storeAddress, StoreResourceDefinition.Attribute.PROPERTIES, name, value);
    context.addStep(putOperation, MapOperations.MAP_PUT_HANDLER, context.getCurrentStage());
  }
};

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

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    PathAddress storeAddress = context.getCurrentAddress().getParent();
    String key = context.getCurrentAddressValue();
    String value = Operations.getAttributeValue(operation).asString();
    ModelNode putOperation = Operations.createMapPutOperation(storeAddress, StoreResourceDefinition.Attribute.PROPERTIES, key, value);
    context.addStep(putOperation, MapOperations.MAP_PUT_HANDLER, context.getCurrentStage());
  }
};

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

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    PathAddress protocolAddress = context.getCurrentAddress().getParent();
    String key = context.getCurrentAddressValue();
    String value = Operations.getAttributeValue(operation).asString();
    ModelNode putOperation = Operations.createMapPutOperation(protocolAddress, AbstractProtocolResourceDefinition.Attribute.PROPERTIES, key, value);
    context.addStep(putOperation, MapOperations.MAP_PUT_HANDLER, context.getCurrentStage());
  }
};

相关文章