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 true if user is a test-identity, otherwise false */ boolean isTestIdentity(); /** * Set test-identity flag for this user. * * @param flag true if user is a test-identity */ void setTestIdentity(boolean flag); }