@Path(value="authenticators")
public interface AuthenticatorResource
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
addAuthenticator(AuthenticatorData authenticatorData) |
AuthenticatorCollection |
findAuthenticators(java.lang.Integer start,
java.lang.Integer size) |
AuthenticatorData |
getAuthenticator(java.lang.String authenticatorID) |
void |
removeAuthenticator(java.lang.String authenticatorID) |
javax.ws.rs.core.Response |
updateAuthenticator(java.lang.String authenticatorID,
AuthenticatorData authenticatorData) |
@GET @Produces(value={"application/xml","application/json"}) AuthenticatorCollection findAuthenticators(@QueryParam(value="start") java.lang.Integer start, @QueryParam(value="size") java.lang.Integer size)
@GET @Path(value="{authenticatorID}") @Produces(value={"application/xml","application/json"}) AuthenticatorData getAuthenticator(@PathParam(value="authenticatorID") java.lang.String authenticatorID)
@POST @Consumes(value={"application/xml","application/json"}) @Produces(value={"application/xml","application/json"}) javax.ws.rs.core.Response addAuthenticator(AuthenticatorData authenticatorData)
@PUT @Path(value="{authenticatorID}") @Consumes(value={"application/xml","application/json"}) @Produces(value={"application/xml","application/json"}) javax.ws.rs.core.Response updateAuthenticator(@PathParam(value="authenticatorID") java.lang.String authenticatorID, AuthenticatorData authenticatorData)
@DELETE @Path(value="{authenticatorID}") @Produces(value={"application/xml","application/json"}) void removeAuthenticator(@PathParam(value="authenticatorID") java.lang.String authenticatorID)