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

org.apache.rahas.impl.util.SAMLCallback Maven / Gradle / Ivy

There is a newer version: 1.7.1
Show newest version
package org.apache.rahas.impl.util;

/**
 * All SAML data retrieving call backs will implement this interface
 * 
 */
public interface SAMLCallback {
    
    /**
     * Attribute callback
     */
    public static final int ATTR_CALLBACK = 1;
    
    /**
     * Subject name identifier
     */
    public static final int NAME_IDENTIFIER_CALLBACK = 2;
    
    /**
     * Returns the type of callback
     * @return
     */
    int getCallbackType();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy