KEYCLOAK-4289
This commit is contained in:
parent
6392405413
commit
c6dab26769
1 changed files with 12 additions and 0 deletions
|
@ -76,6 +76,18 @@ public interface UserResource {
|
||||||
@Path("remove-totp")
|
@Path("remove-totp")
|
||||||
public void removeTotp();
|
public void removeTotp();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disables or deletes all credentials for specific types.
|
||||||
|
* Type examples "otp", "password"
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param credentialTypes
|
||||||
|
*/
|
||||||
|
@Path("disable-credential-types")
|
||||||
|
@PUT
|
||||||
|
@Consumes(MediaType.APPLICATION_JSON)
|
||||||
|
public void disableCredentialType(List<String> credentialTypes);
|
||||||
|
|
||||||
@PUT
|
@PUT
|
||||||
@Path("reset-password")
|
@Path("reset-password")
|
||||||
public void resetPassword(CredentialRepresentation credentialRepresentation);
|
public void resetPassword(CredentialRepresentation credentialRepresentation);
|
||||||
|
|
Loading…
Reference in a new issue