com.safelayer.rap.impl.model.UserInfoValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pki-connector-restapi Show documentation
Show all versions of pki-connector-restapi Show documentation
The PKI Connector RESTAPI is a library that helps developing new PKI Connectors for TrustedX
The newest version!
package com.safelayer.rap.impl.model;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import com.safelayer.rap.api.model.UserInfo;
@SuppressWarnings("serial")
public class UserInfoValue implements UserInfo, Serializable {
private Map attributes = new HashMap();
private String id;
private String domain;
@Override
public void setId(String id) {
this.id = id;
}
@Override
public void setDomain(String domain) {
this.domain = domain;
}
@Override
public String getId() {
return id;
}
@Override
public String getDomain() {
return domain;
}
@Override
public Map getAttributes() {
return attributes;
}
}