IcedTea-Web
NetX

net.sourceforge.jnlp.security
Enum SecurityWarning.AccessType

java.lang.Object
  extended by java.lang.Enum<SecurityWarning.AccessType>
      extended by net.sourceforge.jnlp.security.SecurityWarning.AccessType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SecurityWarning.AccessType>
Enclosing class:
SecurityWarning

public static enum SecurityWarning.AccessType
extends java.lang.Enum<SecurityWarning.AccessType>

The types of access which may need user permission.


Enum Constant Summary
CLIPBOARD_READ
           
CLIPBOARD_WRITE
           
CREATE_DESTKOP_SHORTCUT
           
NETWORK
           
NOTALLSIGNED
           
PRINTER
           
READ_FILE
           
SIGNING_ERROR
           
UNVERIFIED
           
VERIFIED
           
WRITE_FILE
           
 
Method Summary
static SecurityWarning.AccessType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SecurityWarning.AccessType[] 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

READ_FILE

public static final SecurityWarning.AccessType READ_FILE

WRITE_FILE

public static final SecurityWarning.AccessType WRITE_FILE

CREATE_DESTKOP_SHORTCUT

public static final SecurityWarning.AccessType CREATE_DESTKOP_SHORTCUT

CLIPBOARD_READ

public static final SecurityWarning.AccessType CLIPBOARD_READ

CLIPBOARD_WRITE

public static final SecurityWarning.AccessType CLIPBOARD_WRITE

PRINTER

public static final SecurityWarning.AccessType PRINTER

NETWORK

public static final SecurityWarning.AccessType NETWORK

VERIFIED

public static final SecurityWarning.AccessType VERIFIED

UNVERIFIED

public static final SecurityWarning.AccessType UNVERIFIED

NOTALLSIGNED

public static final SecurityWarning.AccessType NOTALLSIGNED

SIGNING_ERROR

public static final SecurityWarning.AccessType SIGNING_ERROR
Method Detail

values

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

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

valueOf

public static SecurityWarning.AccessType 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

IcedTea-Web
NetX

Submit a bug or feature