package at.gv.egovernment.moa.spss.api.cmsverify; import at.gv.egovernment.moa.spss.api.common.MetaInfo; /** * A data object used for verification of CMS signatures. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface CMSDataObject { /** * Gets the meta information of the content. * * @return An object containig the meta information. */ public MetaInfo getMetaInfo(); /** * Gets the actual content of the data object. * * @return The actual content. */ public CMSContent getContent(); }