Class Role

    • Constructor Detail

      • Role

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

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

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

        public Role​(Role 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
      • getName

        public String getName()
        Full name of the role
      • getSystemRole

        public AccountRole getSystemRole()
        Base System Role
      • getEmployeesRef

        public List<Reference> getEmployeesRef()
        employees with this role
      • getMerchant

        public Reference getMerchant()
        The merchant this role belongs to.
      • 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
      • isNotNullName

        public boolean isNotNullName()
        Checks whether the 'name' field is set and is not null
      • isNotNullSystemRole

        public boolean isNotNullSystemRole()
        Checks whether the 'systemRole' field is set and is not null
      • isNotNullEmployeesRef

        public boolean isNotNullEmployeesRef()
        Checks whether the 'employeesRef' field is set and is not null
      • isNotEmptyEmployeesRef

        public boolean isNotEmptyEmployeesRef()
        Checks whether the 'employeesRef' field is set and is not null and is not empty
      • isNotNullMerchant

        public boolean isNotNullMerchant()
        Checks whether the 'merchant' 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
      • hasName

        public boolean hasName()
        Checks whether the 'name' field has been set, however the value could be null
      • hasSystemRole

        public boolean hasSystemRole()
        Checks whether the 'systemRole' field has been set, however the value could be null
      • hasEmployeesRef

        public boolean hasEmployeesRef()
        Checks whether the 'employeesRef' field has been set, however the value could be null
      • hasMerchant

        public boolean hasMerchant()
        Checks whether the 'merchant' field has been set, however the value could be null
      • setId

        public Role setId​(String id)
        Sets the field 'id'.
      • setName

        public Role setName​(String name)
        Sets the field 'name'.
      • setSystemRole

        public Role setSystemRole​(AccountRole systemRole)
        Sets the field 'systemRole'.
      • setEmployeesRef

        public Role setEmployeesRef​(List<Reference> employeesRef)
        Sets the field 'employeesRef'. Nulls in the given List are skipped. List parameter is copied, so it will not reflect any changes, but objects inside it will.
      • setMerchant

        public Role setMerchant​(Reference merchant)
        Sets the field 'merchant'. 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
      • clearName

        public void clearName()
        Clears the 'name' field, the 'has' method for this field will now return false
      • clearSystemRole

        public void clearSystemRole()
        Clears the 'systemRole' field, the 'has' method for this field will now return false
      • clearEmployeesRef

        public void clearEmployeesRef()
        Clears the 'employeesRef' field, the 'has' method for this field will now return false
      • clearMerchant

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

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