AuthenticationProviderRepresentation.java

57 lines | 1.488 kB Blame History Raw Download
package org.keycloak.representations.idm;

import java.util.Map;

/**
 * @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
 */
public class AuthenticationProviderRepresentation {

    private String providerName;
    private boolean passwordUpdateSupported = true;
    private Map<String, String> config;

    public String getProviderName() {
        return providerName;
    }

    public void setProviderName(String providerName) {
        this.providerName = providerName;
    }

    public boolean isPasswordUpdateSupported() {
        return passwordUpdateSupported;
    }

    public void setPasswordUpdateSupported(boolean passwordUpdateSupported) {
        this.passwordUpdateSupported = passwordUpdateSupported;
    }

    public Map<String, String> getConfig() {
        return config;
    }

    public void setConfig(Map<String, String> config) {
        this.config = config;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        AuthenticationProviderRepresentation that = (AuthenticationProviderRepresentation) o;

        if (passwordUpdateSupported != that.passwordUpdateSupported) return false;
        if (config != null ? !config.equals(that.config) : that.config != null) return false;
        if (!providerName.equals(that.providerName)) return false;

        return true;
    }

    @Override
    public int hashCode() {
        return providerName.hashCode();
    }
}