gpt4 book ai didi

org.codehaus.enunciate.contract.jaxws.WebMethod.getOperationName()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-26 10:09:05 25 4
gpt4 key购买 nike

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

WebMethod.getOperationName介绍

[英]The operation name of this web method.
[中]此web方法的操作名。

代码示例

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

/**
 * The operation name for this RPC operation to which this message is associated.
 *
 * @return The operation name for this RPC operation to which this message is associated.
 */
public String getOperationName() {
 return webMethod.getOperationName();
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-full

/**
 * The operation name for this RPC operation to which this message is associated.
 *
 * @return The operation name for this RPC operation to which this message is associated.
 */
public String getOperationName() {
 return webMethod.getOperationName();
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

/**
 * The operation name for this RPC operation to which this message is associated.
 *
 * @return The operation name for this RPC operation to which this message is associated.
 */
public String getOperationName() {
 return webMethod.getOperationName();
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-full

/**
 * The operation name for this RPC operation to which this message is associated.
 *
 * @return The operation name for this RPC operation to which this message is associated.
 */
public String getOperationName() {
 return webMethod.getOperationName();
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

/**
 * Web methods must be unique by name.  (JSR 181: 3.1.1)
 *
 * @param webMethod The web method to compare this to.
 * @return The comparison.
 */
public int compareTo(WebMethod webMethod) {
 return getOperationName().compareTo(webMethod.getOperationName());
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-full

/**
 * Web methods must be unique by name.  (JSR 181: 3.1.1)
 *
 * @param webMethod The web method to compare this to.
 * @return The comparison.
 */
public int compareTo(WebMethod webMethod) {
 return getOperationName().compareTo(webMethod.getOperationName());
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

public String getMessageDocs() {
 String docs = "Output message for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

/**
 * Documentation explaining this is a request message for its method.
 *
 * @return Documentation explaining this is a request message for its method.
 */
public String getMessageDocs() {
 String docs = "request message for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

/**
 * Documentation explaining this is a response message for its method.
 *
 * @return Documentation explaining this is a response message for its method.
 */
public String getMessageDocs() {
 String docs = "response message for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-full

/**
 * Documentation explaining this is a request wrapper for its method.
 *
 * @return Documentation explaining this is a request wrapper for its method.
 */
public String getElementDocs() {
 String docs = "doc/lit request wrapper for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

public String getMessageDocs() {
 String docs = "Input message for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-full

public String getMessageDocs() {
 String docs = "Output message for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-full

public String getMessageDocs() {
 String docs = "Input message for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

/**
 * Documentation explaining this is a response wrapper for its method.
 *
 * @return Documentation explaining this is a response wrapper for its method.
 */
public String getElementDocs() {
 String docs = "doc/lit response wrapper for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-full

/**
 * Documentation explaining this is a response message for its method.
 *
 * @return Documentation explaining this is a response message for its method.
 */
public String getMessageDocs() {
 String docs = "response message for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

/**
 * Documentation explaining this is a request wrapper for its method.
 *
 * @return Documentation explaining this is a request wrapper for its method.
 */
public String getElementDocs() {
 String docs = "doc/lit request wrapper for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-full

/**
 * Documentation explaining this is a request message for its method.
 *
 * @return Documentation explaining this is a request message for its method.
 */
public String getMessageDocs() {
 String docs = "request message for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-full

/**
 * Documentation explaining this is a response wrapper for its method.
 *
 * @return Documentation explaining this is a response wrapper for its method.
 */
public String getElementDocs() {
 String docs = "doc/lit response wrapper for operation \"" + webMethod.getOperationName() + "\".";
 String methodDocs = webMethod.getJavaDoc().toString();
 if (methodDocs.trim().length() > 0) {
  docs += " (" + methodDocs.trim() + ")";
 }
 return docs;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

/**
 * The local name of the element.
 *
 * @return The local name of the element.
 */
public String getElementName() {
 String name = webMethod.getOperationName();
 javax.xml.ws.RequestWrapper annotation = webMethod.getAnnotation(javax.xml.ws.RequestWrapper.class);
 if ((annotation != null) && (annotation.localName() != null) && (!"".equals(annotation.localName()))) {
  name = annotation.localName();
 }
 return name;
}

代码示例来源:origin: org.codehaus.enunciate/enunciate-core

/**
 * The local name of the output.
 *
 * @return The local name of the output.
 */
public String getElementName() {
 String name = webMethod.getOperationName() + "Response";
 javax.xml.ws.ResponseWrapper annotation = webMethod.getAnnotation(javax.xml.ws.ResponseWrapper.class);
 if ((annotation != null) && (annotation.localName() != null) && (!"".equals(annotation.localName()))) {
  name = annotation.localName();
 }
 return name;
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com