KEYCLOAK-4289

This commit is contained in:
Bill Burke 2017-01-25 16:30:30 -05:00
parent 6392405413
commit c6dab26769

View file

@ -76,6 +76,18 @@ public interface UserResource {
@Path("remove-totp")
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
@Path("reset-password")
public void resetPassword(CredentialRepresentation credentialRepresentation);