All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.keycloak.representations.idm.CredentialRepresentation Maven / Gradle / Ivy

package org.keycloak.representations.idm;

/**
 * @author Bill Burke
 * @version $Revision: 1 $
 */
public class CredentialRepresentation {
    public static final String SECRET = "secret";
    public static final String PASSWORD = "password";
    public static final String TOTP = "totp";
    public static final String CLIENT_CERT = "cert";

    protected String type;
    protected String value;
    protected String device;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public String getDevice() {
        return device;
    }

    public void setDevice(String device) {
        this.device = device;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy