package at.gv.egovernment.moa.spss.api.xmlsign; import java.util.List; import at.gv.egovernment.moa.spss.api.common.MetaInfo; /** * Encapsulates information used for the transformation of the data object. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface CreateTransformsInfo { /** * Gets the XMLDSig transforms. * * @return A List of Transform objects. */ public List getTransforms(); /** * Gets meta information about the data resulting from the transformation. * * @return Meta information about the resulting data. */ public MetaInfo getFinalDataMetaInfo(); }