Class EventResponseModel

    • Constructor Detail

      • EventResponseModel

        public EventResponseModel()
    • Method Detail

      • getTime

        public Date getTime()
        GETTER Time when response received
        Returns:
        the value
      • setTime

        public void setTime​(Date value)
        SETTER Time when response received
        Parameters:
        value - the value to set
      • getStatus

        public int getStatus()
        GETTER HTTP Status code such as 200
        Returns:
        the value
      • setStatus

        public void setStatus​(int value)
        SETTER HTTP Status code such as 200
        Parameters:
        value - the value to set
      • getHeaders

        public Map<String,​String> getHeaders()
        GETTER Key/Value map of response headers
        Returns:
        the value
      • setHeaders

        public void setHeaders​(Map<String,​String> value)
        SETTER Key/Value map of response headers
        Parameters:
        value - the value to set
      • getBody

        public Object getBody()
        GETTER Response body
        Returns:
        the value
      • setBody

        public void setBody​(Object value)
        SETTER Response body
        Parameters:
        value - the value to set
      • getTransferEncoding

        public String getTransferEncoding()
        GETTER Transfer Encoding of the body such as "base64", null value implies "json" transfer encoding
        Returns:
        the value
      • setTransferEncoding

        public void setTransferEncoding​(String value)
        SETTER Transfer Encoding of the body such as "base64", null value implies "json" transfer encoding
        Parameters:
        value - the value to set
      • getIpAddress

        public String getIpAddress()
        GETTER IP Address from the response, such as the server IP Address
        Returns:
        the value
      • setIpAddress

        public void setIpAddress​(String value)
        SETTER IP Address from the response, such as the server IP Address
        Parameters:
        value - the value to set