Enum FakeVOMSACServiceProperties
- java.lang.Object
-
- java.lang.Enum<FakeVOMSACServiceProperties>
-
- org.italiangrid.voms.request.impl.FakeVOMSACServiceProperties
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FakeVOMSACServiceProperties>
public enum FakeVOMSACServiceProperties extends java.lang.Enum<FakeVOMSACServiceProperties>
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
defaultValue
private java.lang.String
propertyName
-
Constructor Summary
Constructors Modifier Constructor Description private
FakeVOMSACServiceProperties(java.lang.String propName)
private
FakeVOMSACServiceProperties(java.lang.String propName, java.lang.String defaultValue)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getPropertyName()
java.lang.String
getSystemPropertyValue()
static FakeVOMSACServiceProperties
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FakeVOMSACServiceProperties[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAKE
public static final FakeVOMSACServiceProperties FAKE
-
AA_CERT
public static final FakeVOMSACServiceProperties AA_CERT
-
AA_KEY
public static final FakeVOMSACServiceProperties AA_KEY
-
VO
public static final FakeVOMSACServiceProperties VO
-
FQANS
public static final FakeVOMSACServiceProperties FQANS
-
GAS
public static final FakeVOMSACServiceProperties GAS
-
HOST
public static final FakeVOMSACServiceProperties HOST
-
PORT
public static final FakeVOMSACServiceProperties PORT
-
NOT_BEFORE
public static final FakeVOMSACServiceProperties NOT_BEFORE
-
NOT_AFTER
public static final FakeVOMSACServiceProperties NOT_AFTER
-
SERIAL
public static final FakeVOMSACServiceProperties SERIAL
-
-
Method Detail
-
values
public static FakeVOMSACServiceProperties[] 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 (FakeVOMSACServiceProperties c : FakeVOMSACServiceProperties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FakeVOMSACServiceProperties 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 namejava.lang.NullPointerException
- if the argument is null
-
getPropertyName
public java.lang.String getPropertyName()
-
getSystemPropertyValue
public java.lang.String getSystemPropertyValue()
-
-