1 2 package org.ejbca.core.protocol.ws.client.gen; 3 4 import java.util.List ; 5 import javax.jws.WebMethod; 6 import javax.jws.WebParam; 7 import javax.jws.WebResult; 8 import javax.jws.WebService; 9 import javax.xml.ws.RequestWrapper; 10 import javax.xml.ws.ResponseWrapper; 11 12 13 19 @WebService(name = "EjbcaWS", targetNamespace = "http://ws.protocol.core.ejbca.org/") 20 public interface EjbcaWS { 21 22 23 32 @WebMethod 33 @RequestWrapper(localName = "revokeUser", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeUser") 34 @ResponseWrapper(localName = "revokeUserResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeUserResponse") 35 public void revokeUser( 36 @WebParam(name = "arg0", targetNamespace = "") 37 String arg0, 38 @WebParam(name = "arg1", targetNamespace = "") 39 int arg1, 40 @WebParam(name = "arg2", targetNamespace = "") 41 boolean arg2) 42 throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception 43 ; 44 45 54 @WebMethod 55 @RequestWrapper(localName = "revokeCert", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeCert") 56 @ResponseWrapper(localName = "revokeCertResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeCertResponse") 57 public void revokeCert( 58 @WebParam(name = "arg0", targetNamespace = "") 59 String arg0, 60 @WebParam(name = "arg1", targetNamespace = "") 61 String arg1, 62 @WebParam(name = "arg2", targetNamespace = "") 63 int arg2) 64 throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception 65 ; 66 67 76 @WebMethod 77 @WebResult(targetNamespace = "") 78 @RequestWrapper(localName = "findUser", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.FindUser") 79 @ResponseWrapper(localName = "findUserResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.FindUserResponse") 80 public List <UserDataVOWS> findUser( 81 @WebParam(name = "arg0", targetNamespace = "") 82 UserMatch arg0) 83 throws AuthorizationDeniedException_Exception, EjbcaException_Exception, IllegalQueryException_Exception 84 ; 85 86 95 @WebMethod 96 @RequestWrapper(localName = "editUser", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.EditUser") 97 @ResponseWrapper(localName = "editUserResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.EditUserResponse") 98 public void editUser( 99 @WebParam(name = "arg0", targetNamespace = "") 100 UserDataVOWS arg0) 101 throws ApprovalException_Exception, AuthorizationDeniedException_Exception, EjbcaException_Exception, UserDoesntFullfillEndEntityProfile_Exception, WaitingForApprovalException_Exception 102 ; 103 104 114 @WebMethod 115 @WebResult(targetNamespace = "") 116 @RequestWrapper(localName = "findCerts", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.FindCerts") 117 @ResponseWrapper(localName = "findCertsResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.FindCertsResponse") 118 public List <Certificate> findCerts( 119 @WebParam(name = "arg0", targetNamespace = "") 120 String arg0, 121 @WebParam(name = "arg1", targetNamespace = "") 122 boolean arg1) 123 throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception 124 ; 125 126 138 @WebMethod 139 @WebResult(targetNamespace = "") 140 @RequestWrapper(localName = "pkcs10Req", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.Pkcs10Req") 141 @ResponseWrapper(localName = "pkcs10ReqResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.Pkcs10ReqResponse") 142 public Certificate pkcs10Req( 143 @WebParam(name = "arg0", targetNamespace = "") 144 String arg0, 145 @WebParam(name = "arg1", targetNamespace = "") 146 String arg1, 147 @WebParam(name = "arg2", targetNamespace = "") 148 String arg2, 149 @WebParam(name = "arg3", targetNamespace = "") 150 String arg3) 151 throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception 152 ; 153 154 167 @WebMethod 168 @WebResult(targetNamespace = "") 169 @RequestWrapper(localName = "pkcs12Req", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.Pkcs12Req") 170 @ResponseWrapper(localName = "pkcs12ReqResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.Pkcs12ReqResponse") 171 public KeyStore pkcs12Req( 172 @WebParam(name = "arg0", targetNamespace = "") 173 String arg0, 174 @WebParam(name = "arg1", targetNamespace = "") 175 String arg1, 176 @WebParam(name = "arg2", targetNamespace = "") 177 String arg2, 178 @WebParam(name = "arg3", targetNamespace = "") 179 String arg3, 180 @WebParam(name = "arg4", targetNamespace = "") 181 String arg4) 182 throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception 183 ; 184 185 193 @WebMethod 194 @RequestWrapper(localName = "revokeToken", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeToken") 195 @ResponseWrapper(localName = "revokeTokenResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.RevokeTokenResponse") 196 public void revokeToken( 197 @WebParam(name = "arg0", targetNamespace = "") 198 String arg0, 199 @WebParam(name = "arg1", targetNamespace = "") 200 int arg1) 201 throws AuthorizationDeniedException_Exception, EjbcaException_Exception, NotFoundException_Exception 202 ; 203 204 213 @WebMethod 214 @WebResult(targetNamespace = "") 215 @RequestWrapper(localName = "checkRevokationStatus", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.CheckRevokationStatus") 216 @ResponseWrapper(localName = "checkRevokationStatusResponse", targetNamespace = "http://ws.protocol.core.ejbca.org/", className = "org.ejbca.core.protocol.ws.client.gen.CheckRevokationStatusResponse") 217 public RevokeStatus checkRevokationStatus( 218 @WebParam(name = "arg0", targetNamespace = "") 219 String arg0, 220 @WebParam(name = "arg1", targetNamespace = "") 221 String arg1) 222 throws AuthorizationDeniedException_Exception, EjbcaException_Exception 223 ; 224 225 } 226 | Popular Tags |