xkmsporttype.java

来自「一个免费的CA,基于EJB平台的,老师叫我们测试,现把之共享出来让大家参考」· Java 代码 · 共 155 行

JAVA
155
字号
package org.ejbca.core.protocol.xkms;import javax.jws.WebMethod;import javax.jws.WebParam;import javax.jws.WebResult;import javax.jws.WebService;import javax.jws.soap.SOAPBinding;import org.w3._2002._03.xkms_.CompoundRequestType;import org.w3._2002._03.xkms_.CompoundResultType;import org.w3._2002._03.xkms_.LocateRequestType;import org.w3._2002._03.xkms_.LocateResultType;import org.w3._2002._03.xkms_.PendingRequestType;import org.w3._2002._03.xkms_.RecoverRequestType;import org.w3._2002._03.xkms_.RecoverResultType;import org.w3._2002._03.xkms_.RegisterRequestType;import org.w3._2002._03.xkms_.RegisterResultType;import org.w3._2002._03.xkms_.ReissueRequestType;import org.w3._2002._03.xkms_.ReissueResultType;import org.w3._2002._03.xkms_.ResultType;import org.w3._2002._03.xkms_.RevokeRequestType;import org.w3._2002._03.xkms_.RevokeResultType;import org.w3._2002._03.xkms_.StatusRequestType;import org.w3._2002._03.xkms_.StatusResultType;import org.w3._2002._03.xkms_.ValidateRequestType;import org.w3._2002._03.xkms_.ValidateResultType;/** * This class was generated by the JAXWS SI. * JAX-WS RI 2.1-10/21/2006 12:56 AM(vivek)-EA2 * Generated source version: 2.0 *  */@WebService(name = "XKMSPortType", targetNamespace = "http://www.w3.org/2002/03/xkms#wsdl")@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)/*@XmlSeeAlso({	    org.w3._2000._09.xmldsig_.ObjectFactory.class,    org.w3._2002._03.xkms_.ObjectFactory.class,    org.w3._2001._04.xmlenc_.ObjectFactory.class    })*/public interface XKMSPortType {    /**     *      * @param body     * @return     *     returns org.w3._2002._03.xkms_.ResultType     */    @WebMethod(operationName = "Pending")    @WebResult(name = "Result", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")    public ResultType pending(        @WebParam(name = "PendingRequest", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")        PendingRequestType body);    /**     *      * @param body     * @return     *     returns org.w3._2002._03.xkms_.CompoundResultType     */    @WebMethod(operationName = "Compound")    @WebResult(name = "CompoundResult", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")    public CompoundResultType compound(        @WebParam(name = "CompoundRequest", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")        CompoundRequestType body);    /**     *      * @param body     * @return     *     returns org.w3._2002._03.xkms_.StatusResultType     */    @WebMethod(operationName = "Status")    @WebResult(name = "StatusResult", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")    public StatusResultType status(        @WebParam(name = "StatusRequest", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")        StatusRequestType body);    /**     *      * @param body     * @return     *     returns org.w3._2002._03.xkms_.LocateResultType     */    @WebMethod(operationName = "Locate")    @WebResult(name = "LocateResult", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")    public LocateResultType locate(        @WebParam(name = "LocateRequest", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")        LocateRequestType body);    /**     *      * @param body     * @return     *     returns org.w3._2002._03.xkms_.ValidateResultType     */    @WebMethod(operationName = "Validate")    @WebResult(name = "ValidateResult", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")    public ValidateResultType validate(        @WebParam(name = "ValidateRequest", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")        ValidateRequestType body);    /**     *      * @param body     * @return     *     returns org.w3._2002._03.xkms_.RegisterResultType     */    @WebMethod(operationName = "Register")    @WebResult(name = "RegisterResult", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")    public RegisterResultType register(        @WebParam(name = "RegisterRequest", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")        RegisterRequestType body);    /**     *      * @param body     * @return     *     returns org.w3._2002._03.xkms_.ReissueResultType     */    @WebMethod(operationName = "Reissue")    @WebResult(name = "ReissueResult", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")    public ReissueResultType reissue(        @WebParam(name = "ReissueRequest", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")        ReissueRequestType body);    /**     *      * @param body     * @return     *     returns org.w3._2002._03.xkms_.RevokeResultType     */    @WebMethod(operationName = "Revoke")    @WebResult(name = "RevokeResult", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")    public RevokeResultType revoke(        @WebParam(name = "RevokeRequest", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")        RevokeRequestType body);    /**     *      * @param body     * @return     *     returns org.w3._2002._03.xkms_.RecoverResultType     */    @WebMethod(operationName = "Recover")    @WebResult(name = "RecoverResult", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")    public RecoverResultType recover(        @WebParam(name = "RecoverRequest", targetNamespace = "http://www.w3.org/2002/03/xkms#", partName = "body")        RecoverRequestType body);}

⌨️ 快捷键说明

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