Introduce GDPRQuery command for GDPR data generation, refactor SQL statements, and improve null safety across modules.

Signed-off-by: Chaoscaot <max@maxsp.de>
This commit is contained in:
2025-11-07 12:42:15 +01:00
parent 6ac0143459
commit 39b3cdb897
9 changed files with 336 additions and 12 deletions
@@ -32,6 +32,14 @@ import java.util.stream.Collectors;
public class PersonalKit {
private final InternalKit kit;
public String getName() {
return kit.getName();
}
public boolean isInUse() {
return kit.getInUse();
}
public String getRawInventory() {
return kit.getRawInventory();
}