Package com.vmware.aria.operations
Class StringProperty
-
- All Implemented Interfaces:
@Serializable() public final class StringProperty extends Property
Class representing a String Property value.
A String Property is a value that will change infrequently or not at all.
Examples: IP Address Software Version
-
-
Field Summary
Fields Modifier and Type Field Description private final String
key
private final String
stringValue
private final Long
timestamp
-
Constructor Summary
Constructors Constructor Description StringProperty(String key, String stringValue, Long timestamp)
StringProperty(String key, String stringValue)
-
Method Summary
Modifier and Type Method Description String
getKey()
A string identifying the property. final String
getStringValue()
The value of the property. Long
getTimestamp()
Time in milliseconds since the Epoch when this property value was recorded. -
-
Method Detail
-
getKey
String getKey()
A string identifying the property.
-
getStringValue
final String getStringValue()
The value of the property.
-
getTimestamp
Long getTimestamp()
Time in milliseconds since the Epoch when this property value was recorded. Defaults to the current time.
-
-
-
-