public class SignedDataType extends Object
Java class for SignedDataType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SignedDataType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="DigestAlgorithm" type="{}AlgorithmIdentifier" maxOccurs="unbounded"/>
<element name="EncapsulatedContent" type="{}EncapsulatedContentType"/>
<element name="Certificate" type="{}CertificateType" maxOccurs="unbounded" minOccurs="0"/>
<element name="Signer" type="{}SignerType" maxOccurs="unbounded"/>
</sequence>
<attribute name="Version" type="{}VersionTypeCode" default="v1" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<byte[]> |
certificate |
protected List<AlgorithmIdentifier> |
digestAlgorithm |
protected EncapsulatedContentType |
encapsulatedContent |
protected List<SignerType> |
signer |
protected String |
version |
| Constructor and Description |
|---|
SignedDataType() |
| 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.
|
EncapsulatedContentType |
getEncapsulatedContent()
Gets the value of the encapsulatedContent property.
|
List<SignerType> |
getSigner()
Gets the value of the signer property.
|
String |
getVersion()
Gets the value of the version property.
|
void |
setEncapsulatedContent(EncapsulatedContentType value)
Sets the value of the encapsulatedContent property.
|
void |
setVersion(String value)
Sets the value of the version property.
|
protected List<AlgorithmIdentifier> digestAlgorithm
protected EncapsulatedContentType encapsulatedContent
protected List<byte[]> certificate
protected List<SignerType> signer
protected String 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 EncapsulatedContentType getEncapsulatedContent()
EncapsulatedContentTypepublic void setEncapsulatedContent(EncapsulatedContentType value)
value - allowed object is
EncapsulatedContentTypepublic 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<SignerType> 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
SignerType
public String getVersion()
StringCopyright © 2018. All rights reserved.