edu.uoc.pfc.commons.security
Enum SecurityProperties

java.lang.Object
  extended by java.lang.Enum<SecurityProperties>
      extended by edu.uoc.pfc.commons.security.SecurityProperties
All Implemented Interfaces:
Serializable, Comparable<SecurityProperties>

public enum SecurityProperties
extends Enum<SecurityProperties>

Enumeration on seran declarats tots els noms de les propietats del fitxer on es fa referència al certificat de l'usuari amb el qual s'ha de generar la signatura del certificat de transacció.

Author:
Rubén Salvador Gareta

Enum Constant Summary
ALIAS
           
KEYSTORE
           
PASSWORD
           
 
Method Summary
 String getValue()
          Mètode utilitzat per a consultar el valor d'alguna de les constants de l'enumeration.
static SecurityProperties valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SecurityProperties[] 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

KEYSTORE

public static final SecurityProperties KEYSTORE

ALIAS

public static final SecurityProperties ALIAS

PASSWORD

public static final SecurityProperties PASSWORD
Method Detail

values

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

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

valueOf

public static SecurityProperties valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getValue

public String getValue()
Mètode utilitzat per a consultar el valor d'alguna de les constants de l'enumeration.

Returns:
Valor de l'enumerator consultat.