Description
|
Syntax and example
|
Reference to another property value.
|
!{value-of:group.property }
Example:
jvmargs=!{value-of:Common.jvmargs}
|
Reference to a Java system property.
|
!{SystemProperty:java_property }
Example:
userName=!{SystemProperty:userName}
|
List of references to be evaluated sequentially. The first reference to be resolved is used. The last entry can be an explicit value. The delimiter between references is a question mark (?), and the list must also be terminated with a question mark.
|
?value1?value2?value3...value-n?
Example:
description=?!{SystemProperty: userName}?!{value-of:NameServer.NS1.hostName}?NS1 Host?
|
Hexadecimal value.
|
hex_value
Example:
srvrLoggingLevel=0x0BF
|
Description
|
Syntax and example
|
Value formed by appending a specified string to the existing value
|
!{current-value} append_string
Example:
description=!{current-value} UPDATED
|
Reference to a Java system property
|
!{newValue:UUID}
Example:
uuid=!{newValue:UUID}
|
Description
|
Syntax and example
|
An explicit integer or string constant
|
value
Example:
portNumber=3095
|
Reference to a system environment variable
|
${env_variable}
Example:
workDir=${WORKDIR}
|
Reference to a Windows registry value
|
@{registry_value}
Example:
workDir=@{WorkPath}
|