Interface AuthenticatorResource


@Path("authenticators") public interface AuthenticatorResource
Author:
Endi S. Dewata
  • Method Details

    • findAuthenticators

      @GET javax.ws.rs.core.Response findAuthenticators(@QueryParam("filter") String filter, @QueryParam("start") Integer start, @QueryParam("size") Integer size)
    • getAuthenticator

      @GET @Path("{authenticatorID}") javax.ws.rs.core.Response getAuthenticator(@PathParam("authenticatorID") String authenticatorID)
    • addAuthenticator

      @POST javax.ws.rs.core.Response addAuthenticator(AuthenticatorData authenticatorData)
    • updateAuthenticator

      @Path("{authenticatorID}") javax.ws.rs.core.Response updateAuthenticator(@PathParam("authenticatorID") String authenticatorID, AuthenticatorData authenticatorData)
    • changeStatus

      @POST @Path("{authenticatorID}") javax.ws.rs.core.Response changeStatus(@PathParam("authenticatorID") String authenticatorID, @QueryParam("action") String action)
    • removeAuthenticator

      @DELETE @Path("{authenticatorID}") javax.ws.rs.core.Response removeAuthenticator(@PathParam("authenticatorID") String authenticatorID)