Interface AuthenticatorResource
@Path("authenticators")
public interface AuthenticatorResource
- Author:
- Endi S. Dewata
-
Method Summary
Modifier and TypeMethodDescriptionjavax.ws.rs.core.Response
addAuthenticator
(AuthenticatorData authenticatorData) javax.ws.rs.core.Response
changeStatus
(String authenticatorID, String action) javax.ws.rs.core.Response
findAuthenticators
(String filter, Integer start, Integer size) javax.ws.rs.core.Response
getAuthenticator
(String authenticatorID) javax.ws.rs.core.Response
removeAuthenticator
(String authenticatorID) javax.ws.rs.core.Response
updateAuthenticator
(String authenticatorID, AuthenticatorData authenticatorData)
-
Method Details
-
findAuthenticators
-
getAuthenticator
@GET @Path("{authenticatorID}") javax.ws.rs.core.Response getAuthenticator(@PathParam("authenticatorID") String authenticatorID) -
addAuthenticator
-
updateAuthenticator
@Path("{authenticatorID}") javax.ws.rs.core.Response updateAuthenticator(@PathParam("authenticatorID") String authenticatorID, AuthenticatorData authenticatorData) -
changeStatus
-
removeAuthenticator
@DELETE @Path("{authenticatorID}") javax.ws.rs.core.Response removeAuthenticator(@PathParam("authenticatorID") String authenticatorID)
-