/** * */ package at.gv.egiz.pdfas.impl.api.commons; import at.gv.egiz.pdfas.api.commons.SignatureProfile; /** * Holds the data of a signature profile. * * @author wprinz */ public class SignatureProfileImpl implements SignatureProfile { /** * The profile identifier. */ protected String profileId = null; /** * The MOA key identifiert of this profile. */ protected String moaKeyIdentifier = null; /** * Constructor. * * @param profileId * The profile identifier. * @param moaKeyIdentifier * The MOA key identifiert of this profile. */ public SignatureProfileImpl(String profileId, String moaKeyIdentifier) { this.profileId = profileId; this.moaKeyIdentifier = moaKeyIdentifier; } /** * @see at.gv.egiz.pdfas.api.commons.SignatureProfile#getProfileId() */ public String getProfileId() { return this.profileId; } /** * @see at.gv.egiz.pdfas.api.commons.SignatureProfile#getMOAKeyIdentifier() */ public String getMOAKeyIdentifier() { return this.moaKeyIdentifier; } }