package at.gv.egovernment.moa.spss.api.xmlverify; /** * Contains a hash of the transform parameter. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface TransformParameterHash extends TransformParameter { /** * Gets the method used for calculating the digest value. * * @return The digest method. */ public String getDigestMethod(); /** * Gets the binary hash of the transform parameter. * * @return A binary representation of the hash. */ public byte[] getDigestValue(); }