Enum PermissibleAction

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<PermissibleAction>

    @Deprecated
    public enum PermissibleAction
    extends java.lang.Enum<PermissibleAction>
    Deprecated.
    Support for JACC will be removed in 6.0
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ANY
      Deprecated.
       
      DELETE
      Deprecated.
       
      INSERT
      Deprecated.
       
      READ
      Deprecated.
       
      UPDATE
      Deprecated.
       
    • Method Detail

      • values

        public static PermissibleAction[] values()
        Deprecated.
        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 (PermissibleAction c : PermissibleAction.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static PermissibleAction valueOf​(java.lang.String name)
        Deprecated.
        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
      • getExternalName

        public java.lang.String getExternalName()
        Deprecated.
      • getImpliedActions

        public java.lang.String[] getImpliedActions()
        Deprecated.
      • interpret

        public static PermissibleAction interpret​(java.lang.String action)
        Deprecated.