org.persvr.security
Enum PermissionLevel

java.lang.Object
  extended by java.lang.Enum<PermissionLevel>
      extended by org.persvr.security.PermissionLevel
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, java.lang.Comparable<PermissionLevel>, java.security.acl.Permission

Deprecated.

public enum PermissionLevel
extends java.lang.Enum<PermissionLevel>
implements java.lang.Cloneable, java.security.acl.Permission

Author:
Kris Zyp

Enum Constant Summary
APPEND_LEVEL
          Deprecated.  
EXECUTE_LEVEL
          Deprecated.  
FULL_LEVEL
          Deprecated.  
LIMITED_LEVEL
          Deprecated.  
NONE_LEVEL
          Deprecated.  
READ_LEVEL
          Deprecated.  
WRITE_LEVEL
          Deprecated.  
 
Field Summary
 int level
          Deprecated.  
 java.lang.String name
          Deprecated.  
 
Method Summary
 boolean canAppend()
          Deprecated.  
 boolean canBrowse()
          Deprecated.  
 boolean canExecute()
          Deprecated.  
 boolean canRead()
          Deprecated.  
 boolean canWrite()
          Deprecated.  
static PermissionLevel valueOf(java.lang.String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static PermissionLevel[] values()
          Deprecated. 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
equals, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.security.acl.Permission
equals, toString
 

Enum Constant Detail

NONE_LEVEL

public static final PermissionLevel NONE_LEVEL
Deprecated. 

LIMITED_LEVEL

public static final PermissionLevel LIMITED_LEVEL
Deprecated. 

READ_LEVEL

public static final PermissionLevel READ_LEVEL
Deprecated. 

EXECUTE_LEVEL

public static final PermissionLevel EXECUTE_LEVEL
Deprecated. 

APPEND_LEVEL

public static final PermissionLevel APPEND_LEVEL
Deprecated. 

WRITE_LEVEL

public static final PermissionLevel WRITE_LEVEL
Deprecated. 

FULL_LEVEL

public static final PermissionLevel FULL_LEVEL
Deprecated. 
Field Detail

level

public int level
Deprecated. 

name

public java.lang.String name
Deprecated. 
Method Detail

values

public static PermissionLevel[] 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 (PermissionLevel c : PermissionLevel.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PermissionLevel 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

canExecute

public boolean canExecute()
Deprecated. 

canWrite

public boolean canWrite()
Deprecated. 

canRead

public boolean canRead()
Deprecated. 

canAppend

public boolean canAppend()
Deprecated. 

canBrowse

public boolean canBrowse()
Deprecated.