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

📄 ejbcaws.java

📁 一个免费的CA,基于EJB平台的,老师叫我们测试,现把之共享出来让大家参考
💻 JAVA
字号:
package org.ejbca.core.protocol.ws.client.gen;import java.util.List;import javax.jws.WebMethod;import javax.jws.WebParam;import javax.jws.WebResult;import javax.jws.WebService;import javax.xml.ws.RequestWrapper;import javax.xml.ws.ResponseWrapper;/** * This class was generated by the JAXWS SI. * JAX-WS RI 2.0_01-b59-fcs * Generated source version: 2.0 *  */@WebService(name = "EjbcaWS", targetNamespace = "http://ws.protocol.core.ejbca.org/")public interface EjbcaWS {    /**     *      * @param arg1     * @param arg0     * @param arg2     * @throws EjbcaException_Exception     * @throws NotFoundException_Exception     * @throws AuthorizationDeniedException_Exception     */    @WebMethod    @RequestWrapper(localName = "revokeUser", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeUser")    @ResponseWrapper(localName = "revokeUserResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeUserResponse")    public void revokeUser(        @WebParam(name = "arg0", targetNamespace = "")        String arg0,        @WebParam(name = "arg1", targetNamespace = "")        int arg1,        @WebParam(name = "arg2", targetNamespace = "")        boolean arg2)        throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception    ;    /**     *      * @param arg1     * @param arg0     * @param arg2     * @throws EjbcaException_Exception     * @throws NotFoundException_Exception     * @throws AuthorizationDeniedException_Exception     */    @WebMethod    @RequestWrapper(localName = "revokeCert", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeCert")    @ResponseWrapper(localName = "revokeCertResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeCertResponse")    public void revokeCert(        @WebParam(name = "arg0", targetNamespace = "")        String arg0,        @WebParam(name = "arg1", targetNamespace = "")        String arg1,        @WebParam(name = "arg2", targetNamespace = "")        int arg2)        throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception    ;    /**     *      * @param arg0     * @return     *     returns java.util.List<org.ejbca.core.protocol.ws.client.gen.UserDataVOWS>     * @throws IllegalQueryException_Exception     * @throws EjbcaException_Exception     * @throws AuthorizationDeniedException_Exception     */    @WebMethod    @WebResult(targetNamespace = "")    @RequestWrapper(localName = "findUser", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.FindUser")    @ResponseWrapper(localName = "findUserResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.FindUserResponse")    public List<UserDataVOWS> findUser(        @WebParam(name = "arg0", targetNamespace = "")        UserMatch arg0)        throws AuthorizationDeniedException_Exception, EjbcaException_Exception, IllegalQueryException_Exception    ;    /**     *      * @param arg0     * @throws EjbcaException_Exception     * @throws UserDoesntFullfillEndEntityProfile_Exception     * @throws AuthorizationDeniedException_Exception     * @throws WaitingForApprovalException_Exception     * @throws ApprovalException_Exception     */    @WebMethod    @RequestWrapper(localName = "editUser", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.EditUser")    @ResponseWrapper(localName = "editUserResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.EditUserResponse")    public void editUser(        @WebParam(name = "arg0", targetNamespace = "")        UserDataVOWS arg0)        throws ApprovalException_Exception, AuthorizationDeniedException_Exception, EjbcaException_Exception, UserDoesntFullfillEndEntityProfile_Exception, WaitingForApprovalException_Exception    ;    /**     *      * @param arg1     * @param arg0     * @return     *     returns java.util.List<org.ejbca.core.protocol.ws.client.gen.Certificate>     * @throws EjbcaException_Exception     * @throws NotFoundException_Exception     * @throws AuthorizationDeniedException_Exception     */    @WebMethod    @WebResult(targetNamespace = "")    @RequestWrapper(localName = "findCerts", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.FindCerts")    @ResponseWrapper(localName = "findCertsResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.FindCertsResponse")    public List<Certificate> findCerts(        @WebParam(name = "arg0", targetNamespace = "")        String arg0,        @WebParam(name = "arg1", targetNamespace = "")        boolean arg1)        throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception    ;    /**     *      * @param arg3     * @param arg1     * @param arg0     * @param arg2     * @return     *     returns org.ejbca.core.protocol.ws.client.gen.Certificate     * @throws EjbcaException_Exception     * @throws NotFoundException_Exception     * @throws AuthorizationDeniedException_Exception     */    @WebMethod    @WebResult(targetNamespace = "")    @RequestWrapper(localName = "pkcs10Req", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.Pkcs10Req")    @ResponseWrapper(localName = "pkcs10ReqResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.Pkcs10ReqResponse")    public Certificate pkcs10Req(        @WebParam(name = "arg0", targetNamespace = "")        String arg0,        @WebParam(name = "arg1", targetNamespace = "")        String arg1,        @WebParam(name = "arg2", targetNamespace = "")        String arg2,        @WebParam(name = "arg3", targetNamespace = "")        String arg3)        throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception    ;    /**     *      * @param arg3     * @param arg1     * @param arg0     * @param arg2     * @param arg4     * @return     *     returns org.ejbca.core.protocol.ws.client.gen.KeyStore     * @throws NotFoundException_Exception     * @throws EjbcaException_Exception     * @throws AuthorizationDeniedException_Exception     */    @WebMethod    @WebResult(targetNamespace = "")    @RequestWrapper(localName = "pkcs12Req", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.Pkcs12Req")    @ResponseWrapper(localName = "pkcs12ReqResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.Pkcs12ReqResponse")    public KeyStore pkcs12Req(        @WebParam(name = "arg0", targetNamespace = "")        String arg0,        @WebParam(name = "arg1", targetNamespace = "")        String arg1,        @WebParam(name = "arg2", targetNamespace = "")        String arg2,        @WebParam(name = "arg3", targetNamespace = "")        String arg3,        @WebParam(name = "arg4", targetNamespace = "")        String arg4)        throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception    ;    /**     *      * @param arg1     * @param arg0     * @throws NotFoundException_Exception     * @throws EjbcaException_Exception     * @throws AuthorizationDeniedException_Exception     */    @WebMethod    @RequestWrapper(localName = "revokeToken", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeToken")    @ResponseWrapper(localName = "revokeTokenResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeTokenResponse")    public void revokeToken(        @WebParam(name = "arg0", targetNamespace = "")        String arg0,        @WebParam(name = "arg1", targetNamespace = "")        int arg1)        throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception    ;    /**     *      * @param arg1     * @param arg0     * @return     *     returns org.ejbca.core.protocol.ws.client.gen.RevokeStatus     * @throws EjbcaException_Exception     * @throws AuthorizationDeniedException_Exception     */    @WebMethod    @WebResult(targetNamespace = "")    @RequestWrapper(localName = "checkRevokationStatus", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.CheckRevokationStatus")    @ResponseWrapper(localName = "checkRevokationStatusResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.CheckRevokationStatusResponse")    public RevokeStatus checkRevokationStatus(        @WebParam(name = "arg0", targetNamespace = "")        String arg0,        @WebParam(name = "arg1", targetNamespace = "")        String arg1)        throws AuthorizationDeniedException_Exception, EjbcaException_Exception    ;}

⌨️ 快捷键说明

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