de.cidaas.oauth.model.ResolvedUserInfoFromToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cidaas-interceptor-java Show documentation
Show all versions of cidaas-interceptor-java Show documentation
Interceptor for Cidaas Java Clients
package de.cidaas.oauth.model;
import java.io.Serializable;
import java.util.List;
public class ResolvedUserInfoFromToken implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private String userId;
private String clientId;
private String authRequestId;
private List scopes;
private List roles;
/**
* @return the userId
*/
public String getUserId() {
return userId;
}
/**
* @param userId the userId to set
*/
public void setUserId(String userId) {
this.userId = userId;
}
/**
* @return the clientId
*/
public String getClientId() {
return clientId;
}
/**
* @param clientId the clientId to set
*/
public void setClientId(String clientId) {
this.clientId = clientId;
}
/**
* @return the authRequestId
*/
public String getAuthRequestId() {
return authRequestId;
}
/**
* @param authRequestId the authRequestId to set
*/
public void setAuthRequestId(String authRequestId) {
this.authRequestId = authRequestId;
}
/**
* @return the scopes
*/
public List getScopes() {
return scopes;
}
/**
* @param scopes the scopes to set
*/
public void setScopes(List scopes) {
this.scopes = scopes;
}
/**
* @return the roles
*/
public List getRoles() {
return roles;
}
/**
* @param roles the roles to set
*/
public void setRoles(List roles) {
this.roles = roles;
}
}