Class DynamicBinResponse

    • Constructor Detail

      • DynamicBinResponse

        public DynamicBinResponse()
        Constructs a new empty instance.
      • DynamicBinResponse

        protected DynamicBinResponse​(boolean noInit)
        Constructs a new empty instance.
      • DynamicBinResponse

        public 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

        public DynamicBinResponse​(DynamicBinResponse src)
        Constructs a new instance that is a deep copy of the source instance. It does not copy the bundle or changelog.
    • Method Detail

      • getResponseType

        public 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)
      • getAction

        public String getAction()
        activity action to invoke, only populated for ResponseType ACTIVITY_LAUNCH
      • getJSONObject

        public 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.
        Specified by:
        getJSONObject in interface JSONifiable
      • isNotNullResponseType

        public boolean isNotNullResponseType()
        Checks whether the 'responseType' field is set and is not null
      • isNotNullAction

        public boolean isNotNullAction()
        Checks whether the 'action' field is set and is not null
      • hasResponseType

        public boolean hasResponseType()
        Checks whether the 'responseType' field has been set, however the value could be null
      • hasAction

        public boolean hasAction()
        Checks whether the 'action' field has been set, however the value could be null
      • clearResponseType

        public void clearResponseType()
        Clears the 'responseType' field, the 'has' method for this field will now return false
      • clearAction

        public void clearAction()
        Clears the 'action' field, the 'has' method for this field will now return false
      • containsChanges

        public boolean containsChanges()
        Returns true if this instance has any changes.
      • resetChangeLog

        public void resetChangeLog()
        Reset the log of changes made to this instance, calling copyChanges() after this would return an empty instance.
      • copyChanges

        public DynamicBinResponse copyChanges()
        Create a copy of this instance that contains only fields that were set after the constructor was called.
      • mergeChanges

        public void mergeChanges​(DynamicBinResponse src)
        Copy all the changed fields from the given source to this instance.