Class SignedDataObjectPropertiesType
- java.lang.Object
-
- eu.europa.esig.xades.jaxb.xades132.SignedDataObjectPropertiesType
-
- All Implemented Interfaces:
Serializable
public class SignedDataObjectPropertiesType extends Object implements Serializable
Java class for SignedDataObjectPropertiesType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SignedDataObjectPropertiesType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="DataObjectFormat" type="{http://uri.etsi.org/01903/v1.3.2#}DataObjectFormatType" maxOccurs="unbounded" minOccurs="0"/> <element name="CommitmentTypeIndication" type="{http://uri.etsi.org/01903/v1.3.2#}CommitmentTypeIndicationType" maxOccurs="unbounded" minOccurs="0"/> <element name="AllDataObjectsTimeStamp" type="{http://uri.etsi.org/01903/v1.3.2#}XAdESTimeStampType" maxOccurs="unbounded" minOccurs="0"/> <element name="IndividualDataObjectsTimeStamp" type="{http://uri.etsi.org/01903/v1.3.2#}XAdESTimeStampType" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<XAdESTimeStampType>allDataObjectsTimeStampprotected List<CommitmentTypeIndicationType>commitmentTypeIndicationprotected List<DataObjectFormatType>dataObjectFormatprotected Stringidprotected List<XAdESTimeStampType>individualDataObjectsTimeStamp
-
Constructor Summary
Constructors Constructor Description SignedDataObjectPropertiesType()
-
Method Summary
Modifier and Type Method Description List<XAdESTimeStampType>getAllDataObjectsTimeStamp()Gets the value of the allDataObjectsTimeStamp property.List<CommitmentTypeIndicationType>getCommitmentTypeIndication()Gets the value of the commitmentTypeIndication property.List<DataObjectFormatType>getDataObjectFormat()Gets the value of the dataObjectFormat property.StringgetId()Gets the value of the id property.List<XAdESTimeStampType>getIndividualDataObjectsTimeStamp()Gets the value of the individualDataObjectsTimeStamp property.voidsetId(String value)Sets the value of the id property.
-
-
-
Field Detail
-
dataObjectFormat
protected List<DataObjectFormatType> dataObjectFormat
-
commitmentTypeIndication
protected List<CommitmentTypeIndicationType> commitmentTypeIndication
-
allDataObjectsTimeStamp
protected List<XAdESTimeStampType> allDataObjectsTimeStamp
-
individualDataObjectsTimeStamp
protected List<XAdESTimeStampType> individualDataObjectsTimeStamp
-
id
protected String id
-
-
Method Detail
-
getDataObjectFormat
public List<DataObjectFormatType> getDataObjectFormat()
Gets the value of the dataObjectFormat property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the dataObjectFormat property.For example, to add a new item, do as follows:
getDataObjectFormat().add(newItem);Objects of the following type(s) are allowed in the list
DataObjectFormatType
-
getCommitmentTypeIndication
public List<CommitmentTypeIndicationType> getCommitmentTypeIndication()
Gets the value of the commitmentTypeIndication property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the commitmentTypeIndication property.For example, to add a new item, do as follows:
getCommitmentTypeIndication().add(newItem);Objects of the following type(s) are allowed in the list
CommitmentTypeIndicationType
-
getAllDataObjectsTimeStamp
public List<XAdESTimeStampType> getAllDataObjectsTimeStamp()
Gets the value of the allDataObjectsTimeStamp property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the allDataObjectsTimeStamp property.For example, to add a new item, do as follows:
getAllDataObjectsTimeStamp().add(newItem);Objects of the following type(s) are allowed in the list
XAdESTimeStampType
-
getIndividualDataObjectsTimeStamp
public List<XAdESTimeStampType> getIndividualDataObjectsTimeStamp()
Gets the value of the individualDataObjectsTimeStamp property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the individualDataObjectsTimeStamp property.For example, to add a new item, do as follows:
getIndividualDataObjectsTimeStamp().add(newItem);Objects of the following type(s) are allowed in the list
XAdESTimeStampType
-
-