
no.difi.asic.XadesArtifacts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-asic Show documentation
Show all versions of commons-asic Show documentation
Generic implementation of ASiC-E archives in accordance with ETSI 102 918 v1.3.1.
The newest version!
package no.difi.asic;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
public class XadesArtifacts {
private final Document document;
private final Element signableProperties;
private final String signablePropertiesReferenceUri;
public XadesArtifacts(Document document, Element signableProperties, String signablePropertiesReferenceUri) {
this.document = document;
this.signableProperties = signableProperties;
this.signablePropertiesReferenceUri = signablePropertiesReferenceUri;
}
public Document getDocument() {
return document;
}
public Element getSignableProperties() {
return signableProperties;
}
public String getSignablePropertiesReferenceUri() {
return signablePropertiesReferenceUri;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy