/* * XAdES4j - A Java library for generation and verification of XAdES signatures. * Copyright (C) 2010 Luis Goncalves. * * XAdES4j is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 3 of the License, or any later version. * * XAdES4j is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * * You should have received a copy of the GNU Lesser General Public License along * with XAdES4j. If not, see . */ package xades4j.xml.marshalling; import com.google.inject.Inject; import xades4j.properties.data.SigAndDataObjsPropertiesData; import org.w3c.dom.Node; import xades4j.properties.QualifyingProperty; import xades4j.properties.data.ArchiveTimeStampData; import xades4j.properties.data.CertificateValuesData; import xades4j.properties.data.CompleteCertificateRefsData; import xades4j.properties.data.CompleteRevocationRefsData; import xades4j.properties.data.RevocationValuesData; import xades4j.properties.data.SigAndRefsTimeStampData; import xades4j.properties.data.SignatureTimeStampData; import xades4j.xml.bind.xades.ObjectFactory; import xades4j.xml.bind.xades.XmlUnsignedDataObjectPropertiesType; import xades4j.xml.bind.xades.XmlUnsignedPropertiesType; import xades4j.xml.bind.xades.XmlUnsignedSignaturePropertiesType; import xades4j.xml.marshalling.algorithms.AlgorithmsParametersMarshallingProvider; /** * Default implementation of {@link UnsignedPropertiesMarshaller}. Based on JAXB. *

* Supports all the property data objects corresponding to XAdES 1.4.1 up to XAdES-C * (except attribute validation data refs) plus {@code GenericDOMData}. * @author Luís */ class DefaultUnsignedPropertiesMarshaller extends BaseJAXBMarshaller implements UnsignedPropertiesMarshaller { @Inject DefaultUnsignedPropertiesMarshaller(AlgorithmsParametersMarshallingProvider algorithmsParametersMarshallingProvider) { super(7, QualifyingProperty.UNSIGNED_PROPS_TAG); // Unsigned signature properties super.putConverter(SignatureTimeStampData.class, new ToXmlSignatureTimeStampConverter(algorithmsParametersMarshallingProvider)); super.putConverter(CompleteCertificateRefsData.class, new ToXmlCompleteCertRefsConverter()); super.putConverter(CompleteRevocationRefsData.class, new ToXmlCompleteRevocRefsConverter()); super.putConverter(SigAndRefsTimeStampData.class, new ToXmlSigAndRefsTimeStampConverter(algorithmsParametersMarshallingProvider)); super.putConverter(CertificateValuesData.class, new ToXmlCertificateValuesConverter()); super.putConverter(RevocationValuesData.class, new ToXmlRevocationValuesConverter()); super.putConverter(ArchiveTimeStampData.class, new ToXmlArchiveTimeStampConverter(algorithmsParametersMarshallingProvider)); /* The CounterSignature property is marshalled directly using DOM because * it is easier that way (it is represented by a GenericDOMData instance). */ // Unsigned data object properties /* No unsigned data object properties are defined in the current version * of XAdES. */ } /* Methods from UnsignedPropertiesMarshaller */ @Override public void marshal(SigAndDataObjsPropertiesData props, Node qualifyingPropsNode) throws MarshalException { XmlUnsignedPropertiesType xmlUnsignedProps = new XmlUnsignedPropertiesType(); doMarshal(props, qualifyingPropsNode, xmlUnsignedProps); } /* MEthods from BaseJAXBMarshaller */ @Override protected void prepareSigProps(XmlUnsignedPropertiesType xmlProps) { // Create UnsignedSignatureProperties and add it to UnsignedProperties XmlUnsignedSignaturePropertiesType xmlUnsignedSignatureProps = new XmlUnsignedSignaturePropertiesType(); xmlProps.setUnsignedSignatureProperties(xmlUnsignedSignatureProps); } @Override protected void prepareDataObjsProps(XmlUnsignedPropertiesType xmlProps) { // Create UnsignedDataObjectProperties and add it to UnsignedProperties XmlUnsignedDataObjectPropertiesType xmlUnsignedDataObjProps = new XmlUnsignedDataObjectPropertiesType(); xmlProps.setUnsignedDataObjectProperties(xmlUnsignedDataObjProps); } @Override protected Object createPropsXmlElem( ObjectFactory objFact, XmlUnsignedPropertiesType xmlProps) { return objFact.createUnsignedProperties(xmlProps); } }