public class DynamicBinResponse extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
DynamicBinResponse.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<DynamicBinResponse> |
CREATOR |
static JSONifiable.Creator<DynamicBinResponse> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
DynamicBinResponse()
Constructs a new empty instance.
|
protected |
DynamicBinResponse(boolean noInit)
Constructs a new empty instance.
|
|
DynamicBinResponse(DynamicBinResponse src)
Constructs a new instance that is a deep copy of the source instance.
|
|
DynamicBinResponse(JSONObject jsonObject)
Construct a new instance backed by the given JSONObject, the parameter is not copied so changes to it will be
reflected in this instance and vice-versa.
|
|
DynamicBinResponse(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearAction()
Clears the 'action' field, the 'has' method for this field will now return false
|
void |
clearResponseType()
Clears the 'responseType' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
DynamicBinResponse |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
String |
getAction()
activity action to invoke, only populated for ResponseType ACTIVITY_LAUNCH
|
protected GenericClient |
getGenericClient() |
JSONObject |
getJSONObject()
Returns the internal JSONObject backing this instance, the return value is not a copy so changes to it will be
reflected in this instance and vice-versa.
|
ResponseType |
getResponseType()
ACCEPTED : returned by the implementor if they either don't care about the bin, or if they are using it for a purpose that doesn't require the payment flow be changed, ACTIVITY_LAUNCH:returned by the implementor if they want CPA to start an activity for result, passing the dynamic bin handler request (again)
|
boolean |
hasAction()
Checks whether the 'action' field has been set, however the value could be null
|
boolean |
hasResponseType()
Checks whether the 'responseType' field has been set, however the value could be null
|
boolean |
isNotNullAction()
Checks whether the 'action' field is set and is not null
|
boolean |
isNotNullResponseType()
Checks whether the 'responseType' field is set and is not null
|
void |
mergeChanges(DynamicBinResponse src)
Copy all the changed fields from the given source to this instance.
|
void |
resetChangeLog()
Reset the log of changes made to this instance, calling copyChanges() after this would return an empty instance.
|
DynamicBinResponse |
setAction(String action)
Sets the field 'action'.
|
DynamicBinResponse |
setResponseType(ResponseType responseType)
Sets the field 'responseType'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<DynamicBinResponse> CREATOR
public static final JSONifiable.Creator<DynamicBinResponse> JSON_CREATOR
public DynamicBinResponse()
protected DynamicBinResponse(boolean noInit)
public DynamicBinResponse(String json) throws IllegalArgumentException
IllegalArgumentException
public DynamicBinResponse(JSONObject jsonObject)
public DynamicBinResponse(DynamicBinResponse src)
public ResponseType getResponseType()
public String getAction()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullResponseType()
public boolean isNotNullAction()
public boolean hasResponseType()
public boolean hasAction()
public DynamicBinResponse setResponseType(ResponseType responseType)
public DynamicBinResponse setAction(String action)
public void clearResponseType()
public void clearAction()
public boolean containsChanges()
public void resetChangeLog()
public DynamicBinResponse copyChanges()
public void mergeChanges(DynamicBinResponse src)