Package com.adyen.model.nexo
Class ContentInformation
- java.lang.Object
-
- com.adyen.model.nexo.ContentInformation
-
public class ContentInformation extends Object
Definition: General Cryptographic Message Syntax (CMS) data structure -- Reference: RFC 3852: Cryptographic Message Syntax (CMS) -- Usage: This data structure contains two data elements: The type of content of the CMS data structure The content itself These CMS data structures could be nested to allow a sequence of cryptographic processings on a part of a messageType (e.g.Java class for ContentInformation complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ContentInformation"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice> <element name="EnvelopedData" type="{}EnvelopedData"/> <element name="AuthenticatedData" type="{}AuthenticatedData"/> <element name="SignedData" type="{}SignedData"/> <element name="DigestedData" type="{}DigestedData"/> <element name="NamedKeyEncryptedData" type="{}NamedKeyEncryptedData"/> </choice> </sequence> <attribute name="Content" use="required" type="{}ContentType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected AuthenticatedDataauthenticatedDataThe Authenticated data.protected ContentTypecontentTypeThe Content.protected DigestedDatadigestedDataThe Digested data.protected EnvelopedDataenvelopedDataThe Enveloped data.protected NamedKeyEncryptedDatanamedKeyEncryptedDataThe Named key encrypted data.protected SignedDatasignedDataThe Signed data.
-
Constructor Summary
Constructors Constructor Description ContentInformation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthenticatedDatagetAuthenticatedData()Gets the value of the authenticatedData property.ContentTypegetContentType()Gets the value of the contentType property.DigestedDatagetDigestedData()Gets the value of the digestedData property.EnvelopedDatagetEnvelopedData()Gets the value of the envelopedData property.NamedKeyEncryptedDatagetNamedKeyEncryptedData()Gets the value of the namedKeyEncryptedData property.SignedDatagetSignedData()Gets the value of the signedData property.voidsetAuthenticatedData(AuthenticatedData value)Sets the value of the authenticatedData property.voidsetContentType(ContentType value)Sets the value of the contentType property.voidsetDigestedData(DigestedData value)Sets the value of the digestedData property.voidsetEnvelopedData(EnvelopedData value)Sets the value of the envelopedData property.voidsetNamedKeyEncryptedData(NamedKeyEncryptedData value)Sets the value of the namedKeyEncryptedData property.voidsetSignedData(SignedData value)Sets the value of the signedData property.
-
-
-
Field Detail
-
envelopedData
protected EnvelopedData envelopedData
The Enveloped data.
-
authenticatedData
protected AuthenticatedData authenticatedData
The Authenticated data.
-
signedData
protected SignedData signedData
The Signed data.
-
digestedData
protected DigestedData digestedData
The Digested data.
-
namedKeyEncryptedData
protected NamedKeyEncryptedData namedKeyEncryptedData
The Named key encrypted data.
-
contentType
protected ContentType contentType
The Content.
-
-
Method Detail
-
getEnvelopedData
public EnvelopedData getEnvelopedData()
Gets the value of the envelopedData property.- Returns:
- possible object is
EnvelopedData
-
setEnvelopedData
public void setEnvelopedData(EnvelopedData value)
Sets the value of the envelopedData property.- Parameters:
value- allowed object isEnvelopedData
-
getAuthenticatedData
public AuthenticatedData getAuthenticatedData()
Gets the value of the authenticatedData property.- Returns:
- possible object is
AuthenticatedData
-
setAuthenticatedData
public void setAuthenticatedData(AuthenticatedData value)
Sets the value of the authenticatedData property.- Parameters:
value- allowed object isAuthenticatedData
-
getSignedData
public SignedData getSignedData()
Gets the value of the signedData property.- Returns:
- possible object is
SignedData
-
setSignedData
public void setSignedData(SignedData value)
Sets the value of the signedData property.- Parameters:
value- allowed object isSignedData
-
getDigestedData
public DigestedData getDigestedData()
Gets the value of the digestedData property.- Returns:
- possible object is
DigestedData
-
setDigestedData
public void setDigestedData(DigestedData value)
Sets the value of the digestedData property.- Parameters:
value- allowed object isDigestedData
-
getNamedKeyEncryptedData
public NamedKeyEncryptedData getNamedKeyEncryptedData()
Gets the value of the namedKeyEncryptedData property.- Returns:
- possible object is
NamedKeyEncryptedData
-
setNamedKeyEncryptedData
public void setNamedKeyEncryptedData(NamedKeyEncryptedData value)
Sets the value of the namedKeyEncryptedData property.- Parameters:
value- allowed object isNamedKeyEncryptedData
-
getContentType
public ContentType getContentType()
Gets the value of the contentType property.- Returns:
- possible object is
ContentType
-
setContentType
public void setContentType(ContentType value)
Sets the value of the contentType property.- Parameters:
value- allowed object isContentType
-
-