diff options
Diffstat (limited to 'eaaf_core_api/src/main')
| -rw-r--r-- | eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/data/IEidAuthProcessData.java | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/data/IEidAuthProcessData.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/data/IEidAuthProcessData.java new file mode 100644 index 00000000..36298824 --- /dev/null +++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/data/IEidAuthProcessData.java @@ -0,0 +1,25 @@ +package at.gv.egiz.eaaf.core.api.idp.auth.data; + +/** + * Authentication session-data that adds ID Austria specific information.   + *  + * @author tlenz + * + */ +public interface IEidAuthProcessData extends IAuthProcessDataContainer { + +  /** +   * Flag that indicates if user is a test-identity. +   *  +   * @return <code>true</code> if user is a test-identity, otherwise <code>false</code> +   */ +  boolean isTestIdentity(); + +   +  /** +   * Set test-identity flag for this user. +   *  +   * @param flag <code>true</code> if user is a test-identity +   */ +  void setTestIdentity(boolean flag); +} | 
