/** * */ package at.gv.egiz.pdfas.api.commons; /** * Definition of a signature profile. * * @author wprinz */ public interface SignatureProfile { // TODO: the full profile information will be implemented in future /** * Returns the profile id. * * @return Returns the profile id. */ public String getProfileId(); /** * Returns the MOA KeyIdentifier. * * @return Returns the MOA KeyIdentifier. */ public String getMOAKeyIdentifier(); }