GUACAMOLE-462: Allow individual records to be identified and retrieved directly.

This commit is contained in:
Michael Jumper
2022-02-09 15:33:56 -08:00
parent 6874f9c6bd
commit 449fcb828e
9 changed files with 124 additions and 59 deletions

View File

@@ -100,6 +100,17 @@ public class ModeledActivityRecord implements ActivityRecord {
return false;
}
@Override
public String getIdentifier() {
Integer id = model.getRecordID();
if (id == null)
return null;
return id.toString();
}
@Override
public UUID getUUID() {