Enum LibertyRemoteObject.LibertyRemoteProperty
- java.lang.Object
-
- java.lang.Enum<LibertyRemoteObject.LibertyRemoteProperty>
-
- io.openliberty.tools.common.arquillian.objects.LibertyRemoteObject.LibertyRemoteProperty
-
- All Implemented Interfaces:
LibertyProperty.LibertyPropertyI,Serializable,Comparable<LibertyRemoteObject.LibertyRemoteProperty>
- Enclosing class:
- LibertyRemoteObject
public static enum LibertyRemoteObject.LibertyRemoteProperty extends Enum<LibertyRemoteObject.LibertyRemoteProperty> implements LibertyProperty.LibertyPropertyI
These properties should correspond with the parameters in WLPRemoteContainerConfiguration- Author:
- ctianus.ibm.com
-
-
Enum Constant Summary
Enum Constants Enum Constant Description appDeployTimeoutappUndeployTimeouthostNamehttpPorthttpsPortoutputToConsolepasswordserverNameserverStartTimeoutusername
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LibertyRemoteObject.LibertyRemotePropertyvalueOf(String name)Returns the enum constant of this type with the specified name.static LibertyRemoteObject.LibertyRemoteProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
serverName
public static final LibertyRemoteObject.LibertyRemoteProperty serverName
-
serverStartTimeout
public static final LibertyRemoteObject.LibertyRemoteProperty serverStartTimeout
-
appDeployTimeout
public static final LibertyRemoteObject.LibertyRemoteProperty appDeployTimeout
-
appUndeployTimeout
public static final LibertyRemoteObject.LibertyRemoteProperty appUndeployTimeout
-
username
public static final LibertyRemoteObject.LibertyRemoteProperty username
-
password
public static final LibertyRemoteObject.LibertyRemoteProperty password
-
hostName
public static final LibertyRemoteObject.LibertyRemoteProperty hostName
-
httpPort
public static final LibertyRemoteObject.LibertyRemoteProperty httpPort
-
httpsPort
public static final LibertyRemoteObject.LibertyRemoteProperty httpsPort
-
outputToConsole
public static final LibertyRemoteObject.LibertyRemoteProperty outputToConsole
-
-
Method Detail
-
values
public static LibertyRemoteObject.LibertyRemoteProperty[] 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 (LibertyRemoteObject.LibertyRemoteProperty c : LibertyRemoteObject.LibertyRemoteProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LibertyRemoteObject.LibertyRemoteProperty 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
-
-