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

com.github.dennisit.vplus.data.security.OAuth2Token Maven / Gradle / Ivy

package com.github.dennisit.vplus.data.security;

import org.apache.shiro.authc.AuthenticationToken;

public class OAuth2Token implements AuthenticationToken {
    
	private static final long serialVersionUID = 1L;

	private String token;

	public OAuth2Token(String token){
        this.token = token;
    }

    @Override
    public String getPrincipal() {
        return token;
    }

    @Override
    public Object getCredentials() {
        return token;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy