Interface AuthenticatorResource


  • @Path("authenticators")
    public interface AuthenticatorResource
    Author:
    Endi S. Dewata
    • 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)