
org.digidoc4j.impl.asic.asice.bdoc.BDocSignature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digidoc4j Show documentation
Show all versions of digidoc4j Show documentation
DigiDoc4j is a Java library for digitally signing documents and creating digital signature containers
of signed documents
/* DigiDoc4J library
*
* This software is released under either the GNU Library General Public
* License (see LICENSE.LGPL).
*
* Note that the only valid version of the LGPL license as far as this
* project is concerned is the original GNU Library General Public License
* Version 2.1, February 1999
*/
package org.digidoc4j.impl.asic.asice.bdoc;
import org.digidoc4j.impl.asic.asice.AsicESignature;
import org.digidoc4j.impl.asic.xades.XadesSignature;
import org.digidoc4j.impl.asic.xades.validation.SignatureValidator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* BDoc signature implementation.
*/
public class BDocSignature extends AsicESignature {
private static final Logger logger = LoggerFactory.getLogger(BDocSignature.class);
/**
* BDoc signature constructor.
*
* @param xadesSignature XADES signature
* @param validator signature validator
*/
public BDocSignature(XadesSignature xadesSignature, SignatureValidator validator) {
super(xadesSignature, validator);
logger.debug("New BDoc signature created");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy