org.opensaml.xml.security.trust.TrustEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmltooling Show documentation
Show all versions of xmltooling Show documentation
XMLTooling-J is a low-level library that may be used to construct libraries that allow developers to work with
XML in a Java beans manner.
package org.opensaml.xml.security.trust;
import org.opensaml.xml.security.CriteriaSet;
import org.opensaml.xml.security.SecurityException;
/**
* Evaluates the trustworthiness and validity of a token against
* implementation-specific requirements.
*
* @param the token type this trust engine evaluates
*/
public interface TrustEngine {
/**
* Validates the token against trusted information obtained in an
* implementation-specific manner.
*
* @param token security token to validate
* @param trustBasisCriteria criteria used to describe and/or resolve the information
* which serves as the basis for trust evaluation
*
* @return true if the token is trusted and valid, false if not
*
* @throws SecurityException thrown if there is a problem validating the security token
*/
public boolean validate(TokenType token, CriteriaSet trustBasisCriteria) throws SecurityException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy