Class RequestPayload

  • All Implemented Interfaces:
    java.io.Serializable

    public class RequestPayload
    extends java.lang.Object
    implements java.io.Serializable
    Container object used to contain optional information on content being parsed, passed to JsonParseException in case of exception being thrown; this may be useful for caller to display information on failure.
    Since:
    2.8
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      RequestPayload​(byte[] bytes, java.lang.String charset)  
      RequestPayload​(java.lang.CharSequence str)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object getRawPayload()
      Returns the raw request payload object i.e, either byte[] or String
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • RequestPayload

        public RequestPayload​(byte[] bytes,
                              java.lang.String charset)
      • RequestPayload

        public RequestPayload​(java.lang.CharSequence str)
    • Method Detail

      • getRawPayload

        public java.lang.Object getRawPayload()
        Returns the raw request payload object i.e, either byte[] or String
        Returns:
        Object which is a raw request payload i.e, either byte[] or String
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object