Class Protocol.PostRsvp

java.lang.Object
com.adobe.xfa.protocol.Protocol.PostRsvp
Enclosing interface:
Protocol

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

    • nCode

      public final int nCode
      The response status code.
    • sType

      public final 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 Details

    • PostRsvp

      public PostRsvp(int nCode, 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.