Class SignatureDisclaimer

    • Constructor Detail

      • SignatureDisclaimer

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

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

        public SignatureDisclaimer​(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.
      • SignatureDisclaimer

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

      • getDisclaimerText

        public String getDisclaimerText()
      • getDisclaimerValues

        public Map<String,​String> getDisclaimerValues()
        Values that will be substituted in standard disclaimer text (txn date/time, account number, product label, etc.
      • 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
      • isNotNullDisclaimerText

        public boolean isNotNullDisclaimerText()
        Checks whether the 'disclaimerText' field is set and is not null
      • isNotNullDisclaimerValues

        public boolean isNotNullDisclaimerValues()
        Checks whether the 'disclaimerValues' field is set and is not null
      • isNotEmptyDisclaimerValues

        public boolean isNotEmptyDisclaimerValues()
        Checks whether the 'disclaimerValues' field is set and is not null and is not empty
      • hasDisclaimerText

        public boolean hasDisclaimerText()
        Checks whether the 'disclaimerText' field has been set, however the value could be null
      • hasDisclaimerValues

        public boolean hasDisclaimerValues()
        Checks whether the 'disclaimerValues' field has been set, however the value could be null
      • setDisclaimerText

        public SignatureDisclaimer setDisclaimerText​(String disclaimerText)
        Sets the field 'disclaimerText'.
      • clearDisclaimerText

        public void clearDisclaimerText()
        Clears the 'disclaimerText' field, the 'has' method for this field will now return false
      • clearDisclaimerValues

        public void clearDisclaimerValues()
        Clears the 'disclaimerValues' 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 SignatureDisclaimer copyChanges()
        Create a copy of this instance that contains only fields that were set after the constructor was called.
      • mergeChanges

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