Class Protocol.PostRsvp

  • Enclosing interface:
    Protocol

    public static class Protocol.PostRsvp
    extends java.lang.Object
    Represents the result of a form data post.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      byte[] data
      The response data.
      ExFull exception
      The response exception if the post was unsuccessful.
      int nCode
      The response status code.
      java.lang.String sType
      The response content type.
    • Constructor Summary

      Constructors 
      Constructor Description
      PostRsvp​(int nCode, java.lang.String sType, byte[] data, ExFull exception)
      Instantiates a post response with the given values.
    • Method Summary

      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • nCode

        public final int nCode
        The response status code.
      • sType

        public final java.lang.String sType
        The response content type.
      • data

        public final byte[] data
        The response data.
      • exception

        public final ExFull exception
        The response exception if the post was unsuccessful.
    • Constructor Detail

      • PostRsvp

        public PostRsvp​(int nCode,
                        java.lang.String sType,
                        byte[] data,
                        ExFull exception)
        Instantiates a post response with the given values.
        Parameters:
        nCode - the response code.
        sType - the response content type.
        data - the response data.
        exception - the response exception.