eu.europa.esig.dss.asic.signature.GetDataToSignASiCWithCAdESHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-asic-cades Show documentation
Show all versions of dss-asic-cades Show documentation
DSS ASiC with CAdES contains the code for the creation and validation of ASiC containers with CAdES signature(s).
package eu.europa.esig.dss.asic.signature;
import java.util.List;
import eu.europa.esig.dss.DSSDocument;
public interface GetDataToSignASiCWithCAdESHelper extends GetDataToSignHelper {
/* In CMS/CAdES, we only can sign on file */
DSSDocument getToBeSigned();
/* In case of parallel ASiC-S signature, we need the detached content */
List getDetachedContents();
}