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

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

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

Operations.createMapGetOperation介绍

暂无

代码示例

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

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

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

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

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

@Override
  public void execute(OperationContext context, ModelNode operation) {
    operationDeprecated(context, operation);
    PathAddress storeAddress = context.getCurrentAddress().getParent();
    String key = context.getCurrentAddressValue();
    ModelNode getOperation = Operations.createMapGetOperation(storeAddress, StoreResourceDefinition.Attribute.PROPERTIES, key);
    context.addStep(getOperation, MapOperations.MAP_GET_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();
    ModelNode getOperation = Operations.createMapGetOperation(protocolAddress, AbstractProtocolResourceDefinition.Attribute.PROPERTIES, key);
    context.addStep(getOperation, MapOperations.MAP_GET_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();
    ModelNode getOperation = Operations.createMapGetOperation(storeAddress, StoreResourceDefinition.Attribute.PROPERTIES, key);
    context.addStep(getOperation, MapOperations.MAP_GET_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();
    ModelNode getOperation = Operations.createMapGetOperation(protocolAddress, AbstractProtocolResourceDefinition.Attribute.PROPERTIES, key);
    context.addStep(getOperation, MapOperations.MAP_GET_HANDLER, context.getCurrentStage());
  }
};

相关文章