Documentation

This commit is contained in:
Francesco
2023-09-30 12:14:08 +02:00
parent fa51f11109
commit a6da47775f
8 changed files with 77 additions and 26 deletions

View File

@@ -11,6 +11,10 @@ import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Lob;
/**
* An action executed by any user from the web UI.
*
*/
@Entity
public class UserAction {
@Id

View File

@@ -3,11 +3,20 @@ package tech.ailef.dbadmin.internal.model;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
/**
* A single variable in the settings.
*/
@Entity
public class UserSetting {
/**
* The id of the variable (its name)
*/
@Id
private String id;
/**
* The value of the variable
*/
private String settingValue;
public UserSetting() {