package at.gv.egiz.asic.impl; public class AsicSignedFilesContainer { private String uri = null; private String hashAlg = null; /** * Container element with ASIC signed files information * * @param uri Identifier of the file * @param hashAlg Hash algorithm that is used to hash the file */ public AsicSignedFilesContainer(String uri, String hashAlg) { this.uri = uri; this.hashAlg = hashAlg; } /** * Get file identifier * * @return */ public String getUri() { return uri; } /** * Get hash algorithm that is used to hash the file * * @return */ public String getHashAlg() { return hashAlg; } }