@Path(value="authenticators")
public interface AuthenticatorResource
| Modifier and Type | Method and 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) |
@GET
javax.ws.rs.core.Response findAuthenticators(@QueryParam(value="filter")
java.lang.String filter,
@QueryParam(value="start")
java.lang.Integer start,
@QueryParam(value="size")
java.lang.Integer size)
@GET
@Path(value="{authenticatorID}")
javax.ws.rs.core.Response getAuthenticator(@PathParam(value="authenticatorID")
java.lang.String authenticatorID)
@POST javax.ws.rs.core.Response addAuthenticator(AuthenticatorData authenticatorData)
@Path(value="{authenticatorID}")
javax.ws.rs.core.Response updateAuthenticator(@PathParam(value="authenticatorID")
java.lang.String authenticatorID,
AuthenticatorData authenticatorData)
@POST
@Path(value="{authenticatorID}")
javax.ws.rs.core.Response changeStatus(@PathParam(value="authenticatorID")
java.lang.String authenticatorID,
@QueryParam(value="action")
java.lang.String action)
@DELETE
@Path(value="{authenticatorID}")
javax.ws.rs.core.Response removeAuthenticator(@PathParam(value="authenticatorID")
java.lang.String authenticatorID)