use of xades4j.xml.bind.xades.XmlSignaturePolicyIdentifierType in project xades4j by luisgoncalves.
the class FromXmlSignaturePolicyConverter method convertFromObjectTree.
@Override
public void convertFromObjectTree(XmlSignedSignaturePropertiesType xmlProps, QualifyingPropertiesDataCollector propertyDataCollector) throws PropertyUnmarshalException {
XmlSignaturePolicyIdentifierType xmlSigPolicy = xmlProps.getSignaturePolicyIdentifier();
if (null == xmlSigPolicy)
return;
if (xmlSigPolicy.getSignaturePolicyImplied() != null) {
propertyDataCollector.setSignaturePolicy(new SignaturePolicyData());
return;
}
XmlSignaturePolicyIdType xmlPolicyId = xmlSigPolicy.getSignaturePolicyId();
if (xmlPolicyId.getTransforms() != null)
throw new PropertyUnmarshalException("Signature policy transforms are not supported", SignaturePolicyBase.PROP_NAME);
propertyDataCollector.setSignaturePolicy(new SignaturePolicyData(FromXmlUtils.getObjectIdentifier(xmlPolicyId.getSigPolicyId()), xmlPolicyId.getSigPolicyHash().getDigestMethod().getAlgorithm(), xmlPolicyId.getSigPolicyHash().getDigestValue(), getLocationUrl(xmlPolicyId)));
}
use of xades4j.xml.bind.xades.XmlSignaturePolicyIdentifierType in project xades4j by luisgoncalves.
the class ToXmlSignaturePolicyConverter method convertIntoObjectTree.
@Override
public void convertIntoObjectTree(PropertyDataObject propData, XmlSignedPropertiesType xmlProps, Document doc) {
SignaturePolicyData sigPolicyData = (SignaturePolicyData) propData;
XmlSignaturePolicyIdentifierType xmlSigPolicy = new XmlSignaturePolicyIdentifierType();
if (null == sigPolicyData.getIdentifier()) {
xmlSigPolicy.setSignaturePolicyImplied();
} else {
xmlSigPolicy.setSignaturePolicyId(getSignaturePolicy(sigPolicyData, doc));
}
xmlProps.getSignedSignatureProperties().setSignaturePolicyIdentifier(xmlSigPolicy);
}
Aggregations