Class Permissions

    • Constructor Detail

      • Permissions

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

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

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

        public Permissions​(Permissions 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
      • getBits

        public Long getBits()
        A bitmap representing the permissions
      • getReadablePermissions

        public List<Permission> getReadablePermissions()
        A readable list of permissions
      • 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
      • isNotNullBits

        public boolean isNotNullBits()
        Checks whether the 'bits' field is set and is not null
      • isNotNullReadablePermissions

        public boolean isNotNullReadablePermissions()
        Checks whether the 'readablePermissions' field is set and is not null
      • isNotEmptyReadablePermissions

        public boolean isNotEmptyReadablePermissions()
        Checks whether the 'readablePermissions' field is set and is not null and is not empty
      • hasId

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

        public boolean hasBits()
        Checks whether the 'bits' field has been set, however the value could be null
      • hasReadablePermissions

        public boolean hasReadablePermissions()
        Checks whether the 'readablePermissions' field has been set, however the value could be null
      • setBits

        public Permissions setBits​(Long bits)
        Sets the field 'bits'.
      • setReadablePermissions

        public Permissions setReadablePermissions​(List<Permission> readablePermissions)
        Sets the field 'readablePermissions'. Nulls in the given List are skipped. List parameter is copied, so it will not reflect any changes, but objects inside it will.
      • clearId

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

        public void clearBits()
        Clears the 'bits' field, the 'has' method for this field will now return false
      • clearReadablePermissions

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

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