buildKey method
Get the string representation (e.g. @bob:city.address.my_app@alice
) of the key
for which this update command is being built.
First of all calls validateKey
. If validation fails an exception will be thrown. If not
then we return the string representation of the key.
Implementation
String buildKey() {
validateKey();
return super.atKey.toString();
}