org.apache.axis2.util.Utils.getAxisSpecifMEPConstant()方法的使用及代码示例

x33g5p2x  于2022-01-31 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(98)

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

Utils.getAxisSpecifMEPConstant介绍

[英]Maps the String URI of the Message exchange pattern to a integer. Further, in the first lookup, it will cache the looked up value so that the subsequent method calls are extremely efficient.
[中]将消息交换模式的字符串URI映射为整数。此外,在第一次查找中,它将缓存查找到的值,以便后续的方法调用非常高效。

代码示例

代码示例来源:origin: apache/axis2-java

int mepConstant = Utils.getAxisSpecifMEPConstant(mep);

代码示例来源:origin: apache/axis2-java

addAttribute(doc, "mep", Utils.getAxisSpecifMEPConstant(
    axisOperation.getMessageExchangePattern()) + "", methodElement);
addAttribute(doc, "mepURI", axisOperation.getMessageExchangePattern(),
         methodElement);
  addAttribute(doc, "mep", Utils.getAxisSpecifMEPConstant(
      axisOperation.getMessageExchangePattern()) + "", methodElement);
  addAttribute(doc, "mepURI", axisOperation.getMessageExchangePattern(),

代码示例来源:origin: apache/axis2-java

endpointName + localPart + DATABINDING_SUPPORTER_NAME_SUFFIX,
    methodElement);
addAttribute(doc, "mep", Utils.getAxisSpecifMEPConstant(messageExchangePattern) + "",
    methodElement);
addAttribute(doc, "mepURI", messageExchangePattern, methodElement);

相关文章