/** * */ package at.gv.egiz.pdfas.impl.api.commons; import java.util.Properties; 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; // start - added by tknall /** * Properties containing the layout settings relevant to the search algorithm * for signature blocks. */ protected Properties signatureBlockEntries; // stop - added by tknall /** * 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; this.signatureBlockEntries = new Properties(); } /** * @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; } // start - added by tknall /** * @see at.gv.egiz.pdfas.api.commons.SignatureProfile#getSignatureBlockEntries() */ public Properties getSignatureBlockEntries() { return this.signatureBlockEntries; } /** * Sets the entries relevant to the search algorithm for signature blocks.
* e.g. properties starting with sig_obj.PROFILE.key. and * properties of the form sig_obj.PROFILE.table.TABLENAME.NUMBER * where PROFILE is the name of the current profile, * TABLENAME is the name of a table and NUMBER * is the number of the specific row within the table TABLENAME. * * @param signatureBlockEntries * The entries relevant to the signature block search algorithm as * Java properties. */ public void setSignatureBlockEntries(Properties signatureBlockEntries) { this.signatureBlockEntries = signatureBlockEntries; } // stop - added by tknall }