Package com.adobe.xfa.protocol
Class Protocol.PostRsvp
- java.lang.Object
-
- com.adobe.xfa.protocol.Protocol.PostRsvp
-
- Enclosing interface:
- Protocol
public static class Protocol.PostRsvp extends java.lang.Object
Represents the result of a form data post.
-
-
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.
-
-