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

org.opensaml.xml.security.trust.TrustEngine Maven / Gradle / Ivy

Go to download

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.

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