Enum LibertyManagedObject.LibertyManagedProperty
- java.lang.Object
-
- java.lang.Enum<LibertyManagedObject.LibertyManagedProperty>
-
- io.openliberty.tools.common.arquillian.objects.LibertyManagedObject.LibertyManagedProperty
-
- All Implemented Interfaces:
LibertyProperty.LibertyPropertyI,Serializable,Comparable<LibertyManagedObject.LibertyManagedProperty>
- Enclosing class:
- LibertyManagedObject
public static enum LibertyManagedObject.LibertyManagedProperty extends Enum<LibertyManagedObject.LibertyManagedProperty> implements LibertyProperty.LibertyPropertyI
These properties should correspond with the parameters in WLPManagedContainerConfiguration- Author:
- ctianus.ibm.com
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LibertyManagedObject.LibertyManagedPropertyvalueOf(String name)Returns the enum constant of this type with the specified name.static LibertyManagedObject.LibertyManagedProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
usrDir
public static final LibertyManagedObject.LibertyManagedProperty usrDir
-
serverStartTimeout
public static final LibertyManagedObject.LibertyManagedProperty serverStartTimeout
-
serverStopTimeout
public static final LibertyManagedObject.LibertyManagedProperty serverStopTimeout
-
appDeployTimeout
public static final LibertyManagedObject.LibertyManagedProperty appDeployTimeout
-
appUndeployTimeout
public static final LibertyManagedObject.LibertyManagedProperty appUndeployTimeout
-
sharedLib
public static final LibertyManagedObject.LibertyManagedProperty sharedLib
-
apiTypeVisibility
public static final LibertyManagedObject.LibertyManagedProperty apiTypeVisibility
-
deployType
public static final LibertyManagedObject.LibertyManagedProperty deployType
-
javaVmArguments
public static final LibertyManagedObject.LibertyManagedProperty javaVmArguments
-
addLocalConnector
public static final LibertyManagedObject.LibertyManagedProperty addLocalConnector
-
securityConfiguration
public static final LibertyManagedObject.LibertyManagedProperty securityConfiguration
-
failSafeUndeployment
public static final LibertyManagedObject.LibertyManagedProperty failSafeUndeployment
-
outputToConsole
public static final LibertyManagedObject.LibertyManagedProperty outputToConsole
-
allowConnectingToRunningServer
public static final LibertyManagedObject.LibertyManagedProperty allowConnectingToRunningServer
-
verifyApps
public static final LibertyManagedObject.LibertyManagedProperty verifyApps
-
verifyAppDeployTimeout
public static final LibertyManagedObject.LibertyManagedProperty verifyAppDeployTimeout
-
fileDeleteRetries
public static final LibertyManagedObject.LibertyManagedProperty fileDeleteRetries
-
standardFileDeleteRetryInterval
public static final LibertyManagedObject.LibertyManagedProperty standardFileDeleteRetryInterval
-
-
Method Detail
-
values
public static LibertyManagedObject.LibertyManagedProperty[] 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 (LibertyManagedObject.LibertyManagedProperty c : LibertyManagedObject.LibertyManagedProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LibertyManagedObject.LibertyManagedProperty 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
-
-