⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 soapmessagehandlersannotation.java

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 JAVA
字号:
package org.codehaus.xfire.annotations.soap;import java.io.Serializable;/** * Represents a common implementation of the SOAP message handlers annotation. Specifies a list of {@link * SOAPMessageHandler SOAP protocol handlers} that run before and after business methods on the Web Service. These * handlers are called in response to SOAP messages targeting the service. The <code>SOAPMessageHandlersAnnotation</code> * is an array of SOAPMessageHandler types. The handlers are run in the order in which they appear in the annotation, * starting with the first handler in the array. * * @author <a href="mailto:poutsma@mac.com">Arjen Poutsma</a> */public class SOAPMessageHandlersAnnotation implements Serializable{    private SOAPMessageHandler[] value;    /**     * Initializes a new instance of the <code>SOAPMessageHandlersAnnotation</code>.     *     * @param value the handlers.     */    public SOAPMessageHandlersAnnotation(SOAPMessageHandler[] value)    {        this.value = value;    }    /**     * Returns the SOAP message handlers.     *     * @return the message handlers.     */    public SOAPMessageHandler[] getValue()    {        return value;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -