Class CXML
- java.lang.Object
-
- org.cxml.CXML
-
public class CXML extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<DsSignature>dsSignatureprotected java.util.List<java.lang.Object>headerOrMessageOrRequestOrResponseprotected java.lang.StringpayloadIDprotected java.lang.StringsignatureVersionprotected java.lang.Stringtimestampprotected java.lang.Stringversionprotected java.lang.StringxmlLang
-
Constructor Summary
Constructors Constructor Description CXML()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<DsSignature>getDsSignature()Gets the value of the dsSignature property.java.util.List<java.lang.Object>getHeaderOrMessageOrRequestOrResponse()Gets the value of the headerOrMessageOrRequestOrResponse property.java.lang.StringgetPayloadID()Gets the value of the payloadID property.java.lang.StringgetSignatureVersion()Gets the value of the signatureVersion property.java.lang.StringgetTimestamp()Gets the value of the timestamp property.java.lang.StringgetVersion()Gets the value of the version property.java.lang.StringgetXmlLang()Gets the value of the xmlLang property.voidsetPayloadID(java.lang.String value)Sets the value of the payloadID property.voidsetSignatureVersion(java.lang.String value)Sets the value of the signatureVersion property.voidsetTimestamp(java.lang.String value)Sets the value of the timestamp property.voidsetVersion(java.lang.String value)Sets the value of the version property.voidsetXmlLang(java.lang.String value)Sets the value of the xmlLang property.
-
-
-
Field Detail
-
version
protected java.lang.String version
-
payloadID
protected java.lang.String payloadID
-
timestamp
protected java.lang.String timestamp
-
signatureVersion
protected java.lang.String signatureVersion
-
xmlLang
protected java.lang.String xmlLang
-
headerOrMessageOrRequestOrResponse
protected java.util.List<java.lang.Object> headerOrMessageOrRequestOrResponse
-
dsSignature
protected java.util.List<DsSignature> dsSignature
-
-
Method Detail
-
getVersion
public java.lang.String getVersion()
Gets the value of the version property.- Returns:
- possible object is
String
-
setVersion
public void setVersion(java.lang.String value)
Sets the value of the version property.- Parameters:
value- allowed object isString
-
getPayloadID
public java.lang.String getPayloadID()
Gets the value of the payloadID property.- Returns:
- possible object is
String
-
setPayloadID
public void setPayloadID(java.lang.String value)
Sets the value of the payloadID property.- Parameters:
value- allowed object isString
-
getTimestamp
public java.lang.String getTimestamp()
Gets the value of the timestamp property.- Returns:
- possible object is
String
-
setTimestamp
public void setTimestamp(java.lang.String value)
Sets the value of the timestamp property.- Parameters:
value- allowed object isString
-
getSignatureVersion
public java.lang.String getSignatureVersion()
Gets the value of the signatureVersion property.- Returns:
- possible object is
String
-
setSignatureVersion
public void setSignatureVersion(java.lang.String value)
Sets the value of the signatureVersion property.- Parameters:
value- allowed object isString
-
getXmlLang
public java.lang.String getXmlLang()
Gets the value of the xmlLang property.- Returns:
- possible object is
String
-
setXmlLang
public void setXmlLang(java.lang.String value)
Sets the value of the xmlLang property.- Parameters:
value- allowed object isString
-
getHeaderOrMessageOrRequestOrResponse
public java.util.List<java.lang.Object> getHeaderOrMessageOrRequestOrResponse()
Gets the value of the headerOrMessageOrRequestOrResponse 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 headerOrMessageOrRequestOrResponse property.For example, to add a new item, do as follows:
getHeaderOrMessageOrRequestOrResponse().add(newItem);Objects of the following type(s) are allowed in the list
HeaderMessageRequestResponse
-
getDsSignature
public java.util.List<DsSignature> getDsSignature()
Gets the value of the dsSignature 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 dsSignature property.For example, to add a new item, do as follows:
getDsSignature().add(newItem);Objects of the following type(s) are allowed in the list
DsSignature
-
-