Class AdditionalData

java.lang.Object
net.finmath.smartcontract.product.xml.AdditionalData

public class AdditionalData extends Object
Provides extra information not represented in the model that may be useful in processing the message i.e. diagnosing the reason for failure.

Java class for AdditionalData complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="AdditionalData">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="mimeType" type="{http://www.fpml.org/FpML-5/confirmation}MimeType"/>
         <choice>
           <element name="string" type="{http://www.fpml.org/FpML-5/confirmation}String"/>
           <element name="hexadecimalBinary" type="{http://www.w3.org/2001/XMLSchema}hexBinary"/>
           <element name="base64Binary" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
           <element name="originalMessage">
             <complexType>
               <complexContent>
                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                   <sequence>
                     <any processContents='skip'/>
                   </sequence>
                 </restriction>
               </complexContent>
             </complexType>
           </element>
         </choice>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • mimeType

      protected MimeType mimeType
    • string

      protected String string
    • hexadecimalBinary

      protected byte[] hexadecimalBinary
    • base64Binary

      protected byte[] base64Binary
    • originalMessage

      protected AdditionalData.OriginalMessage originalMessage
  • Constructor Details

    • AdditionalData

      public AdditionalData()
  • Method Details

    • getMimeType

      public MimeType getMimeType()
      Gets the value of the mimeType property.
      Returns:
      possible object is MimeType
    • setMimeType

      public void setMimeType(MimeType value)
      Sets the value of the mimeType property.
      Parameters:
      value - allowed object is MimeType
    • getString

      public String getString()
      Gets the value of the string property.
      Returns:
      possible object is String
    • setString

      public void setString(String value)
      Sets the value of the string property.
      Parameters:
      value - allowed object is String
    • getHexadecimalBinary

      public byte[] getHexadecimalBinary()
      Gets the value of the hexadecimalBinary property.
      Returns:
      possible object is String
    • setHexadecimalBinary

      public void setHexadecimalBinary(byte[] value)
      Sets the value of the hexadecimalBinary property.
      Parameters:
      value - allowed object is String
    • getBase64Binary

      public byte[] getBase64Binary()
      Gets the value of the base64Binary property.
      Returns:
      possible object is byte[]
    • setBase64Binary

      public void setBase64Binary(byte[] value)
      Sets the value of the base64Binary property.
      Parameters:
      value - allowed object is byte[]
    • getOriginalMessage

      public AdditionalData.OriginalMessage getOriginalMessage()
      Gets the value of the originalMessage property.
      Returns:
      possible object is AdditionalData.OriginalMessage
    • setOriginalMessage

      public void setOriginalMessage(AdditionalData.OriginalMessage value)
      Sets the value of the originalMessage property.
      Parameters:
      value - allowed object is AdditionalData.OriginalMessage