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

de.cidaas.oauth.model.ResolvedUserInfoFromToken Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
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;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy