![JAR search and dependency download from the Maven repository](/logo.png)
eu.europa.esig.dss.asic.signature.asics.AbstractGetDataToSignASiCSWithCAdES 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.asics;
import eu.europa.esig.dss.asic.ASiCParameters;
import eu.europa.esig.dss.utils.Utils;
public abstract class AbstractGetDataToSignASiCSWithCAdES extends AbstractGetDataToSignASiCS {
protected String getSignatureFileName(final ASiCParameters asicParameters) {
if (Utils.isStringNotBlank(asicParameters.getSignatureFileName())) {
return "META-INF/" + asicParameters.getSignatureFileName();
}
return "META-INF/signature.p7s";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy