public class SignedData extends Object
Java class for SignedData complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SignedData">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="DigestAlgorithm" type="{}AlgorithmIdentifier" maxOccurs="unbounded"/>
<element name="EncapsulatedContent" type="{}EncapsulatedContent"/>
<element name="Certificate" type="{}Certificate" maxOccurs="unbounded" minOccurs="0"/>
<element name="Signer" type="{}Signer" maxOccurs="unbounded"/>
</sequence>
<attribute name="Version" type="{}VersionType" default="v1" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<byte[]> |
certificate
The Certificate.
|
protected List<AlgorithmIdentifier> |
digestAlgorithm
The Digest algorithm.
|
protected EncapsulatedContent |
encapsulatedContent
The Encapsulated content.
|
protected List<Signer> |
signer
The Signer.
|
protected VersionType |
version
The Version.
|
| Constructor and Description |
|---|
SignedData() |
| Modifier and Type | Method and Description |
|---|---|
List<byte[]> |
getCertificate()
Gets the value of the certificate property.
|
List<AlgorithmIdentifier> |
getDigestAlgorithm()
Gets the value of the digestAlgorithm property.
|
EncapsulatedContent |
getEncapsulatedContent()
Gets the value of the encapsulatedContent property.
|
List<Signer> |
getSigner()
Gets the value of the signer property.
|
VersionType |
getVersion()
Gets the value of the version property.
|
void |
setEncapsulatedContent(EncapsulatedContent value)
Sets the value of the encapsulatedContent property.
|
void |
setVersion(VersionType value)
Sets the value of the version property.
|
protected List<AlgorithmIdentifier> digestAlgorithm
protected EncapsulatedContent encapsulatedContent
protected List<byte[]> certificate
protected VersionType version
public List<AlgorithmIdentifier> getDigestAlgorithm()
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 set method for the digestAlgorithm property.
For example, to add a new item, do as follows:
getDigestAlgorithm().add(newItem);
Objects of the following type(s) are allowed in the list
AlgorithmIdentifier
public EncapsulatedContent getEncapsulatedContent()
EncapsulatedContentpublic void setEncapsulatedContent(EncapsulatedContent value)
value - allowed object is EncapsulatedContentpublic List<byte[]> getCertificate()
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 set method for the certificate property.
For example, to add a new item, do as follows:
getCertificate().add(newItem);
Objects of the following type(s) are allowed in the list byte[]
public List<Signer> getSigner()
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 set method for the signer property.
For example, to add a new item, do as follows:
getSigner().add(newItem);
Objects of the following type(s) are allowed in the list
Signer
public VersionType getVersion()
VersionTypepublic void setVersion(VersionType value)
value - allowed object is VersionTypeCopyright © 2022. All rights reserved.