package at.gv.egovernment.moa.id.data; import java.util.List; import org.w3c.dom.Element; import at.gv.egiz.eaaf.core.api.idp.IAuthData; import at.gv.egovernment.moa.id.commons.api.data.IMISMandate; public interface IMOAAuthData extends IAuthData{ @Deprecated /** * Return STORK QAA level * * @return */ String getQAALevel(); List getEncbPKList(); byte[] getSignerCertificate(); String getAuthBlock(); boolean isPublicAuthority(); String getPublicAuthorityCode(); boolean isQualifiedCertificate(); String getBkuURL(); String getInterfederatedIDP(); boolean isInterfederatedSSOSession(); boolean isUseMandate(); IMISMandate getMISMandate(); Element getMandate(); String getMandateReferenceValue(); //ISA 1.18 attributes String getPvpAttribute_OU(); List getAuthenticationRoles(); }