package at.gv.egovernment.moa.spss.api.xmlverify; import java.util.List; /** * Encapsulates explicit transformation information. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface VerifyTransformsInfoProfileExplicit extends VerifyTransformsInfoProfile { /** * Gets the XMLDSig transforms element. * * @return The List of Transforms. */ public List getTransforms(); /** * Gets the transformation parameters. * * @return The transformation parameters. */ public List getTransformParameters(); }