Class BrandAsset

    • Constructor Detail

      • BrandAsset

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

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

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

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

      • getId

        public String getId()
        Unique identifier
      • getType

        public String getType()
      • getFilename

        public String getFilename()
      • getMimeType

        public String getMimeType()
      • getUrl

        public String getUrl()
      • getReseller

        public Reference getReseller()
      • 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
      • isNotNullId

        public boolean isNotNullId()
        Checks whether the 'id' field is set and is not null
      • isNotNullType

        public boolean isNotNullType()
        Checks whether the 'type' field is set and is not null
      • isNotNullFilename

        public boolean isNotNullFilename()
        Checks whether the 'filename' field is set and is not null
      • isNotNullMimeType

        public boolean isNotNullMimeType()
        Checks whether the 'mimeType' field is set and is not null
      • isNotNullUrl

        public boolean isNotNullUrl()
        Checks whether the 'url' field is set and is not null
      • isNotNullReseller

        public boolean isNotNullReseller()
        Checks whether the 'reseller' field is set and is not null
      • hasId

        public boolean hasId()
        Checks whether the 'id' field has been set, however the value could be null
      • hasType

        public boolean hasType()
        Checks whether the 'type' field has been set, however the value could be null
      • hasFilename

        public boolean hasFilename()
        Checks whether the 'filename' field has been set, however the value could be null
      • hasMimeType

        public boolean hasMimeType()
        Checks whether the 'mimeType' field has been set, however the value could be null
      • hasUrl

        public boolean hasUrl()
        Checks whether the 'url' field has been set, however the value could be null
      • hasReseller

        public boolean hasReseller()
        Checks whether the 'reseller' field has been set, however the value could be null
      • setFilename

        public BrandAsset setFilename​(String filename)
        Sets the field 'filename'.
      • setMimeType

        public BrandAsset setMimeType​(String mimeType)
        Sets the field 'mimeType'.
      • setReseller

        public BrandAsset setReseller​(Reference reseller)
        Sets the field 'reseller'. The parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • clearId

        public void clearId()
        Clears the 'id' field, the 'has' method for this field will now return false
      • clearType

        public void clearType()
        Clears the 'type' field, the 'has' method for this field will now return false
      • clearFilename

        public void clearFilename()
        Clears the 'filename' field, the 'has' method for this field will now return false
      • clearMimeType

        public void clearMimeType()
        Clears the 'mimeType' field, the 'has' method for this field will now return false
      • clearUrl

        public void clearUrl()
        Clears the 'url' field, the 'has' method for this field will now return false
      • clearReseller

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

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