Package com.vmware.aria.operations
Class Identifier
-
- All Implemented Interfaces:
@Serializable() public final class Identifier
Represents a piece of data that identifies an Object.
This class represents a piece of data that identifies an Object. If isPartOfUniqueness is false, this data can change over time without creating a new Object. This is primarily used for human-readable values that are useful in identification purposes, but may change at times.
-
-
Constructor Summary
Constructors Constructor Description Identifier(String key, String value, Boolean isPartOfUniqueness)
Identifier(String key, String value)
-
Method Summary
Modifier and Type Method Description final String
getKey()
A key that determines which identifier the value corresponds to. final String
getValue()
The value of the identifier. final Boolean
isPartOfUniqueness()
Determines if this key/value pair is used in the identification process. String
toString()
Boolean
equals(Object other)
Integer
hashCode()
-
-
Method Detail
-
isPartOfUniqueness
final Boolean isPartOfUniqueness()
Determines if this key/value pair is used in the identification process.
-
-
-
-