Interface AuthenticatorResource
-
@Path("authenticators") public interface AuthenticatorResource
- Author:
- Endi S. Dewata
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Response
addAuthenticator(AuthenticatorData authenticatorData)
javax.ws.rs.core.Response
changeStatus(java.lang.String authenticatorID, java.lang.String action)
javax.ws.rs.core.Response
findAuthenticators(java.lang.String filter, java.lang.Integer start, java.lang.Integer size)
javax.ws.rs.core.Response
getAuthenticator(java.lang.String authenticatorID)
javax.ws.rs.core.Response
removeAuthenticator(java.lang.String authenticatorID)
javax.ws.rs.core.Response
updateAuthenticator(java.lang.String authenticatorID, AuthenticatorData authenticatorData)
-
-
-
Method Detail
-
findAuthenticators
@GET javax.ws.rs.core.Response findAuthenticators(@QueryParam("filter") java.lang.String filter, @QueryParam("start") java.lang.Integer start, @QueryParam("size") java.lang.Integer size)
-
getAuthenticator
@GET @Path("{authenticatorID}") javax.ws.rs.core.Response getAuthenticator(@PathParam("authenticatorID") java.lang.String authenticatorID)
-
addAuthenticator
@POST javax.ws.rs.core.Response addAuthenticator(AuthenticatorData authenticatorData)
-
updateAuthenticator
@Path("{authenticatorID}") javax.ws.rs.core.Response updateAuthenticator(@PathParam("authenticatorID") java.lang.String authenticatorID, AuthenticatorData authenticatorData)
-
changeStatus
@POST @Path("{authenticatorID}") javax.ws.rs.core.Response changeStatus(@PathParam("authenticatorID") java.lang.String authenticatorID, @QueryParam("action") java.lang.String action)
-
removeAuthenticator
@DELETE @Path("{authenticatorID}") javax.ws.rs.core.Response removeAuthenticator(@PathParam("authenticatorID") java.lang.String authenticatorID)
-
-