edu.uoc.pfc.commons.security
Enum SecurityProperties
java.lang.Object
java.lang.Enum<SecurityProperties>
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
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. |
KEYSTORE
public static final SecurityProperties KEYSTORE
ALIAS
public static final SecurityProperties ALIAS
PASSWORD
public static final SecurityProperties PASSWORD
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.