@Consumes(value="application/json")
@Produces(value="application/json")
public interface OAuthClientResource
Modifier and Type | Method and Description |
---|---|
CredentialRepresentation |
generateNewSecret() |
ClaimRepresentation |
getClaims() |
String |
getInstallationJson() |
RoleMappingResource |
getScopeMappings() |
CredentialRepresentation |
getSecret() |
void |
remove() |
OAuthClientRepresentation |
toRepresentation() |
void |
update(OAuthClientRepresentation oAuthClientRepresentation) |
ClaimRepresentation |
updateClaims(ClaimRepresentation claimRepresentation) |
@GET OAuthClientRepresentation toRepresentation()
@PUT void update(OAuthClientRepresentation oAuthClientRepresentation)
@DELETE void remove()
@GET @Path(value="claims") ClaimRepresentation getClaims()
@PUT @Path(value="claims") ClaimRepresentation updateClaims(ClaimRepresentation claimRepresentation)
@POST @Path(value="client-secret") CredentialRepresentation generateNewSecret()
@GET @Path(value="client-secret") CredentialRepresentation getSecret()
@GET @Path(value="installation") String getInstallationJson()
@Path(value="/scope-mappings") RoleMappingResource getScopeMappings()
Copyright © 2015. All Rights Reserved.