/** * */ package at.gv.egovernment.moa.id.config.legacy; /** * Encapsulates Signature Verification data for STORK according MOA configuration * * @author bzwattendorfer * */ public class SignatureVerificationParameter { /** ID of the MOA-SP TrustProfile to be used for STORK SAML signature verification */ private String trustProfileID; /** * Gets the MOA-SP TrustProfileID * @return TrustProfileID of MOA-SP for STORK signature verification */ public String getTrustProfileID() { return trustProfileID; } /** * Sets the MOA-SP TrustProfileID * @param trustProfileID TrustProfileID of MOA-SP for STORK signature verification */ public void setTrustProfileID(String trustProfileID) { this.trustProfileID = trustProfileID; } }