All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.whaleal.icefrog.http.webservice.SoapProtocol Maven / Gradle / Ivy

The newest version!
package com.whaleal.icefrog.http.webservice;

import javax.xml.soap.SOAPConstants;

/**
 * SOAP协议版本枚举
 *
 * @author Looly
 * @author wh
 */
public enum SoapProtocol {
    /**
     * SOAP 1.1协议
     */
    SOAP_1_1(SOAPConstants.SOAP_1_1_PROTOCOL),
    /**
     * SOAP 1.2协议
     */
    SOAP_1_2(SOAPConstants.SOAP_1_2_PROTOCOL);

    private final String value;

    /**
     * 构造
     *
     * @param value {@link SOAPConstants} 中的协议版本值
     */
    SoapProtocol( String value ) {
        this.value = value;
    }

    /**
     * 获取版本值信息
     *
     * @return 版本值信息
     */
    public String getValue() {
        return this.value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy