blob: 358842d69d3e0f53b3f4a48822290c4c6c1658bf [file] [log] [blame]
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();
}