Package org.guvnor.ala.openshift.config
Enum OpenShiftProperty
- java.lang.Object
-
- java.lang.Enum<OpenShiftProperty>
-
- org.guvnor.ala.openshift.config.OpenShiftProperty
-
- All Implemented Interfaces:
Serializable,Comparable<OpenShiftProperty>
public enum OpenShiftProperty extends Enum<OpenShiftProperty>
All OpenShift provider and runtime configuration parameters.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenvKey()StringinputExpression()StringinputKey()static voidmain(String... args)StringpropertyKey()static OpenShiftPropertyvalueOf(String name)Returns the enum constant of this type with the specified name.static OpenShiftProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_PROXY
public static final OpenShiftProperty ALL_PROXY
-
HTTP_PROXY
public static final OpenShiftProperty HTTP_PROXY
-
HTTPS_PROXY
public static final OpenShiftProperty HTTPS_PROXY
-
KUBERNETES_API_VERSION
public static final OpenShiftProperty KUBERNETES_API_VERSION
-
KUBERNETES_AUTH_BASIC_PASSWORD
public static final OpenShiftProperty KUBERNETES_AUTH_BASIC_PASSWORD
-
KUBERNETES_AUTH_BASIC_USERNAME
public static final OpenShiftProperty KUBERNETES_AUTH_BASIC_USERNAME
-
KUBERNETES_AUTH_TOKEN
public static final OpenShiftProperty KUBERNETES_AUTH_TOKEN
-
KUBERNETES_CERTS_CA_DATA
public static final OpenShiftProperty KUBERNETES_CERTS_CA_DATA
-
KUBERNETES_CERTS_CA_FILE
public static final OpenShiftProperty KUBERNETES_CERTS_CA_FILE
-
KUBERNETES_CERTS_CLIENT_DATA
public static final OpenShiftProperty KUBERNETES_CERTS_CLIENT_DATA
-
KUBERNETES_CERTS_CLIENT_FILE
public static final OpenShiftProperty KUBERNETES_CERTS_CLIENT_FILE
-
KUBERNETES_CERTS_CLIENT_KEY_ALGO
public static final OpenShiftProperty KUBERNETES_CERTS_CLIENT_KEY_ALGO
-
KUBERNETES_CERTS_CLIENT_KEY_DATA
public static final OpenShiftProperty KUBERNETES_CERTS_CLIENT_KEY_DATA
-
KUBERNETES_CERTS_CLIENT_KEY_FILE
public static final OpenShiftProperty KUBERNETES_CERTS_CLIENT_KEY_FILE
-
KUBERNETES_CERTS_CLIENT_KEY_PASSPHRASE
public static final OpenShiftProperty KUBERNETES_CERTS_CLIENT_KEY_PASSPHRASE
-
KUBERNETES_CONNECTION_TIMEOUT
public static final OpenShiftProperty KUBERNETES_CONNECTION_TIMEOUT
-
KUBERNETES_KEYSTORE_FILE
public static final OpenShiftProperty KUBERNETES_KEYSTORE_FILE
-
KUBERNETES_KEYSTORE_PASSPHRASE
public static final OpenShiftProperty KUBERNETES_KEYSTORE_PASSPHRASE
-
KUBERNETES_LOGGING_INTERVAL
public static final OpenShiftProperty KUBERNETES_LOGGING_INTERVAL
-
KUBERNETES_MAIN
public static final OpenShiftProperty KUBERNETES_MAIN
-
KUBERNETES_NAMESPACE
public static final OpenShiftProperty KUBERNETES_NAMESPACE
-
KUBERNETES_REQUEST_TIMEOUT
public static final OpenShiftProperty KUBERNETES_REQUEST_TIMEOUT
-
KUBERNETES_ROLLING_TIMEOUT
public static final OpenShiftProperty KUBERNETES_ROLLING_TIMEOUT
-
KUBERNETES_SCALE_TIMEOUT
public static final OpenShiftProperty KUBERNETES_SCALE_TIMEOUT
-
KUBERNETES_TLS_VERSIONS
public static final OpenShiftProperty KUBERNETES_TLS_VERSIONS
-
KUBERNETES_TRUST_CERTIFICATES
public static final OpenShiftProperty KUBERNETES_TRUST_CERTIFICATES
-
KUBERNETES_TRUSTSTORE_FILE
public static final OpenShiftProperty KUBERNETES_TRUSTSTORE_FILE
-
KUBERNETES_TRUSTSTORE_PASSPHRASE
public static final OpenShiftProperty KUBERNETES_TRUSTSTORE_PASSPHRASE
-
KUBERNETES_USER_AGENT
public static final OpenShiftProperty KUBERNETES_USER_AGENT
-
KUBERNETES_WATCH_RECONNECT_INTERVAL
public static final OpenShiftProperty KUBERNETES_WATCH_RECONNECT_INTERVAL
-
KUBERNETES_WATCH_RECONNECT_LIMIT
public static final OpenShiftProperty KUBERNETES_WATCH_RECONNECT_LIMIT
-
KUBERNETES_WEBSOCKET_PING_INTERVAL
public static final OpenShiftProperty KUBERNETES_WEBSOCKET_PING_INTERVAL
-
KUBERNETES_WEBSOCKET_TIMEOUT
public static final OpenShiftProperty KUBERNETES_WEBSOCKET_TIMEOUT
-
NO_PROXY
public static final OpenShiftProperty NO_PROXY
-
PROXY_PASSWORD
public static final OpenShiftProperty PROXY_PASSWORD
-
PROXY_USERNAME
public static final OpenShiftProperty PROXY_USERNAME
-
KUBERNETES_OAPI_VERSION
public static final OpenShiftProperty KUBERNETES_OAPI_VERSION
-
OPENSHIFT_BUILD_TIMEOUT
public static final OpenShiftProperty OPENSHIFT_BUILD_TIMEOUT
-
OPENSHIFT_URL
public static final OpenShiftProperty OPENSHIFT_URL
-
PROVIDER_NAME
public static final OpenShiftProperty PROVIDER_NAME
-
APPLICATION_NAME
public static final OpenShiftProperty APPLICATION_NAME
-
KIE_SERVER_CONTAINER_DEPLOYMENT
public static final OpenShiftProperty KIE_SERVER_CONTAINER_DEPLOYMENT
-
PROJECT_NAME
public static final OpenShiftProperty PROJECT_NAME
-
RUNTIME_NAME
public static final OpenShiftProperty RUNTIME_NAME
-
RESOURCE_SECRETS_URI
public static final OpenShiftProperty RESOURCE_SECRETS_URI
-
RESOURCE_STREAMS_URI
public static final OpenShiftProperty RESOURCE_STREAMS_URI
-
RESOURCE_TEMPLATE_NAME
public static final OpenShiftProperty RESOURCE_TEMPLATE_NAME
-
RESOURCE_TEMPLATE_PARAM_DELIMITER
public static final OpenShiftProperty RESOURCE_TEMPLATE_PARAM_DELIMITER
-
RESOURCE_TEMPLATE_PARAM_ASSIGNER
public static final OpenShiftProperty RESOURCE_TEMPLATE_PARAM_ASSIGNER
-
RESOURCE_TEMPLATE_PARAM_VALUES
public static final OpenShiftProperty RESOURCE_TEMPLATE_PARAM_VALUES
-
RESOURCE_TEMPLATE_URI
public static final OpenShiftProperty RESOURCE_TEMPLATE_URI
-
SERVICE_NAME
public static final OpenShiftProperty SERVICE_NAME
-
-
Method Detail
-
values
public static OpenShiftProperty[] 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 (OpenShiftProperty c : OpenShiftProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OpenShiftProperty 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 nameNullPointerException- if the argument is null
-
envKey
public final String envKey()
-
propertyKey
public final String propertyKey()
-
inputKey
public final String inputKey()
-
inputExpression
public final String inputExpression()
-
main
public static final void main(String... args)
-
-