Class XAdESSignatureFacet
java.lang.Object
org.apache.poi.poifs.crypt.dsig.facets.XAdESSignatureFacet
- All Implemented Interfaces:
SignatureFacet
XAdES Signature Facet. Implements XAdES v1.4.1 which is compatible with XAdES
v1.3.2. The implemented XAdES format is XAdES-BES/EPES. It's up to another
part of the signature service to upgrade the XAdES-BES to a XAdES-X-L.
This implementation has been tested against an implementation that
participated multiple ETSI XAdES plugtests.
- See Also:
-
Field Summary
Fields inherited from interface org.apache.poi.poifs.crypt.dsig.facets.SignatureFacet
MS_DIGSIG_NS, OO_DIGSIG_NS, XADES_132_NS, XADES_141_NS, XML_DIGSIG_NS, XML_NS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddMimeType(String dsReferenceUri, String mimetype) Adds a mime-type for the given ds:Reference (referred via its @URI).voidpreSign(SignatureInfo signatureInfo, Document document, List<Reference> references, List<XMLObject> objects) This method is being invoked by the XML signature service engine during pre-sign phase.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.poi.poifs.crypt.dsig.facets.SignatureFacet
postSign
-
Constructor Details
-
XAdESSignatureFacet
public XAdESSignatureFacet()
-
-
Method Details
-
preSign
public void preSign(SignatureInfo signatureInfo, Document document, List<Reference> references, List<XMLObject> objects) throws XMLSignatureException Description copied from interface:SignatureFacetThis method is being invoked by the XML signature service engine during pre-sign phase. Via this method a signature facet implementation can add signature facets to an XML signature.- Specified by:
preSignin interfaceSignatureFacet- Parameters:
signatureInfo- the signature info object holding the OPCPackage and other document related datadocument- the signature document to be used for importsreferences- list of reference definitionsobjects- objects to be signed/included in the signature document- Throws:
XMLSignatureException
-
addMimeType
Adds a mime-type for the given ds:Reference (referred via its @URI). This information is added via the xades:DataObjectFormat element.- Parameters:
dsReferenceUri- the reference urimimetype- the mimetype
-