2015-05-13 06:41:55 +00:00
|
|
|
package org.keycloak.models;
|
|
|
|
|
2015-06-17 15:55:58 +00:00
|
|
|
import java.io.Serializable;
|
2015-05-13 06:41:55 +00:00
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
|
|
|
|
*/
|
2015-06-17 15:55:58 +00:00
|
|
|
public class UserFederationMapperModel implements Serializable {
|
2015-05-13 06:41:55 +00:00
|
|
|
|
|
|
|
protected String id;
|
|
|
|
protected String name;
|
2015-05-21 15:37:56 +00:00
|
|
|
|
|
|
|
// Refers to DB ID of federation provider
|
|
|
|
protected String federationProviderId;
|
|
|
|
|
|
|
|
// Refers to ID of UserFederationMapper implementation ( UserFederationMapperFactory.getId )
|
|
|
|
protected String federationMapperType;
|
|
|
|
|
2015-05-13 06:41:55 +00:00
|
|
|
protected Map<String, String> config;
|
|
|
|
|
|
|
|
public String getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setId(String id) {
|
|
|
|
this.id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setName(String name) {
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
|
2015-05-21 15:37:56 +00:00
|
|
|
public String getFederationProviderId() {
|
|
|
|
return federationProviderId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFederationProviderId(String federationProviderId) {
|
|
|
|
this.federationProviderId = federationProviderId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFederationMapperType() {
|
|
|
|
return federationMapperType;
|
2015-05-13 06:41:55 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 15:37:56 +00:00
|
|
|
public void setFederationMapperType(String federationMapperType) {
|
|
|
|
this.federationMapperType = federationMapperType;
|
2015-05-13 06:41:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
UserFederationMapperModel that = (UserFederationMapperModel) o;
|
|
|
|
|
|
|
|
if (!id.equals(that.id)) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int hashCode() {
|
|
|
|
return id.hashCode();
|
|
|
|
}
|
2015-08-04 10:30:37 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return new StringBuilder(" { name=" + name)
|
|
|
|
.append(", federationMapperType=" + federationMapperType)
|
|
|
|
.append(", config=" + config)
|
|
|
|
.append(" } ").toString();
|
|
|
|
}
|
2015-05-13 06:41:55 +00:00
|
|
|
}
|