public interface ClientResource
@PUT @Path(value="/management/permissions") @Consumes(value="application/json") @Produces(value="application/json") ManagementPermissionReference setPermissions(ManagementPermissionRepresentation status)
ManagementPermissionReference
.status
- status request to apply@GET @Path(value="/management/permissions") @Produces(value="application/json") ManagementPermissionReference getPermissions()
@Path(value="protocol-mappers") ProtocolMappersResource getProtocolMappers()
@GET @Produces(value="application/json") ClientRepresentation toRepresentation()
@PUT @Consumes(value="application/json") void update(ClientRepresentation clientRepresentation)
@DELETE void remove()
@POST @Path(value="client-secret") @Produces(value="application/json") CredentialRepresentation generateNewSecret()
@GET @Path(value="client-secret") @Produces(value="application/json") CredentialRepresentation getSecret()
@Path(value="registration-access-token") @POST @Produces(value="application/json") @Consumes(value="application/json") ClientRepresentation regenerateRegistrationAccessToken()
@Path(value="certificates/{attr}") ClientAttributeCertificateResource getCertficateResource(@PathParam(value="attr") String attributePrefix)
attributePrefix
- @GET @Path(value="installation/providers/{providerId}") String getInstallationProvider(@PathParam(value="providerId") String providerId)
@Path(value="session-count") @GET @Produces(value="application/json") Map<String,Integer> getApplicationSessionCount()
@Path(value="user-sessions") @GET @Produces(value="application/json") List<UserSessionRepresentation> getUserSessions(@QueryParam(value="first") Integer firstResult, @QueryParam(value="max") Integer maxResults)
@Path(value="offline-session-count") @GET @Produces(value="application/json") Map<String,Long> getOfflineSessionCount()
@Path(value="offline-sessions") @GET @Produces(value="application/json") List<UserSessionRepresentation> getOfflineUserSessions(@QueryParam(value="first") Integer firstResult, @QueryParam(value="max") Integer maxResults)
@POST @Path(value="push-revocation") @Produces(value="application/json") void pushRevocation()
@Path(value="/scope-mappings") RoleMappingResource getScopeMappings()
@Path(value="/roles") RolesResource roles()
@GET @Produces(value="application/json") @Path(value="default-client-scopes") List<ClientScopeRepresentation> getDefaultClientScopes()
@PUT @Path(value="default-client-scopes/{clientScopeId}") void addDefaultClientScope(@PathParam(value="clientScopeId") String clientScopeId)
@DELETE @Path(value="default-client-scopes/{clientScopeId}") void removeDefaultClientScope(@PathParam(value="clientScopeId") String clientScopeId)
@GET @Produces(value="application/json") @Path(value="optional-client-scopes") List<ClientScopeRepresentation> getOptionalClientScopes()
@PUT @Path(value="optional-client-scopes/{clientScopeId}") void addOptionalClientScope(@PathParam(value="clientScopeId") String clientScopeId)
@DELETE @Path(value="optional-client-scopes/{clientScopeId}") void removeOptionalClientScope(@PathParam(value="clientScopeId") String clientScopeId)
@Path(value="/service-account-user") @GET @Produces(value="application/json") UserRepresentation getServiceAccountUser()
@Path(value="nodes") @POST @Consumes(value="application/json") void registerNode(Map<String,String> formParams)
@Path(value="nodes/{node}") @DELETE void unregisterNode(@PathParam(value="node") String node)
@Path(value="test-nodes-available") @GET @Produces(value="application/json") GlobalRequestResult testNodesAvailable()
@Path(value="/authz/resource-server") AuthorizationResource authorization()
Copyright © 2021 JBoss by Red Hat. All rights reserved.