preparing moving of locations

This commit is contained in:
2025-10-22 18:51:14 +02:00
parent 1acf54f58a
commit 7b259e7425
7 changed files with 65 additions and 15 deletions

View File

@@ -43,6 +43,11 @@ public class DbLocation extends Location {
return parentLocationId;
}
public DbLocation parent(DbLocation newParent) {
parentLocationId = newParent.id();
return this;
}
@Override
public DbLocation resolve() {
return this;