Interface AuthenticatorResource
@Path("authenticators")
public interface AuthenticatorResource
- Author:
- Endi S. Dewata
-
Method Summary
Modifier and TypeMethodDescriptionjavax.ws.rs.core.ResponseaddAuthenticator(AuthenticatorData authenticatorData) javax.ws.rs.core.ResponsechangeStatus(String authenticatorID, String action) javax.ws.rs.core.ResponsefindAuthenticators(String filter, Integer start, Integer size) javax.ws.rs.core.ResponsegetAuthenticator(String authenticatorID) javax.ws.rs.core.ResponseremoveAuthenticator(String authenticatorID) javax.ws.rs.core.ResponseupdateAuthenticator(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)
-