Enum ProcessInstancePermissions

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ALL
      Indicates that all interactions are permitted.
      CREATE
      Indicates that CREATE interactions are permitted.
      DELETE
      Indicates that DELETE interactions are permitted.
      NONE
      The none permission means 'no action', 'doing nothing'.
      READ
      Indicates that READ interactions are permitted.
      RETRY_JOB
      Indicates that RETRY_JOB interactions are permitted.
      SUSPEND
      Indicates that SUSPEND interactions are permitted.
      UPDATE
      Indicates that UPDATE interactions are permitted.
      UPDATE_VARIABLE
      Indicates that UPDATE_VARIABLE interactions are permitted.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      returns the name of the permission, ie.
      Resource[] getTypes()
      returns the resource types which are allowed for this permission
      int getValue()
      returns the unique numeric value of the permission.
      static ProcessInstancePermissions valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ProcessInstancePermissions[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • NONE

        public static final ProcessInstancePermissions NONE
        The none permission means 'no action', 'doing nothing'. It does not mean that no permissions are granted.
      • ALL

        public static final ProcessInstancePermissions ALL
        Indicates that all interactions are permitted. If ALL is revoked it means that the user is not permitted to do everything, which means that at least one permission is revoked. This does not implicate that all individual permissions are revoked. Example: If the UPDATE permission is revoke also the ALL permission is revoked, because the user is not authorized to execute all actions anymore.
      • UPDATE_VARIABLE

        public static final ProcessInstancePermissions UPDATE_VARIABLE
        Indicates that UPDATE_VARIABLE interactions are permitted.
    • Method Detail

      • values

        public static ProcessInstancePermissions[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ProcessInstancePermissions c : ProcessInstancePermissions.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ProcessInstancePermissions valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getName

        public java.lang.String getName()
        Description copied from interface: Permission
        returns the name of the permission, ie. 'UPDATE'
        Specified by:
        getName in interface Permission
      • getValue

        public int getValue()
        Description copied from interface: Permission
        returns the unique numeric value of the permission. Must be a power of 2. ie 2^0, 2^1, 2^2, 2^3, 2^4 ...
        Specified by:
        getValue in interface Permission
      • getTypes

        public Resource[] getTypes()
        Description copied from interface: Permission
        returns the resource types which are allowed for this permission
        Specified by:
        getTypes in interface Permission