
com.daedafusion.security.authentication.Token Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-framework Show documentation
Show all versions of security-framework Show documentation
A pluggable security framework "inspired" by the OWASP ESAPI framework
The newest version!
package com.daedafusion.security.authentication;
import java.util.HashMap;
import java.util.Map;
/**
* Created by mphilpot on 7/11/14.
*/
public interface Token
{
/**
*
* @return String serialized version of the token
*/
String getTokenString();
/**
* Optional session context ("client-ip" for example)
*
* @return Map
*/
default Map getContext(){return new HashMap<>();}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy