Added package-info files

This commit is contained in:
Francesco 2023-10-08 11:33:34 +02:00
parent dbdd45190c
commit 474d71d1d9
12 changed files with 45 additions and 4 deletions

View File

@ -0,0 +1,4 @@
/**
* Annotations defined to allow user customization
*/
package tech.ailef.dbadmin.external.annotations;

View File

@ -0,0 +1,4 @@
/**
* Controllers registered for the web UI
*/
package tech.ailef.dbadmin.external.controller;

View File

@ -0,0 +1,4 @@
/**
* Rest controllers
*/
package tech.ailef.dbadmin.external.controller.rest;

View File

@ -535,10 +535,6 @@ public enum DbFieldType {
* Returns the name of the Thymeleaf fragments in the 'inputs.html'
* file, used to render an input field for this specific type.
* For example, a fragment using a file input is used for binary fields.
*
* For some types, the fragment to be used varies in different context.
*
* @param c the context in which this fragment has to be rendered
*/
public abstract String getFragmentName();

View File

@ -0,0 +1,4 @@
/**
* Representation of the user database and repository classes.
*/
package tech.ailef.dbadmin.external.dbmapping;

View File

@ -0,0 +1,4 @@
/**
* Data objects used in primarily in requests and responses
*/
package tech.ailef.dbadmin.external.dto;

View File

@ -0,0 +1,4 @@
/**
* Exception classes
*/
package tech.ailef.dbadmin.external.exceptions;

View File

@ -0,0 +1,5 @@
/**
* Miscellaneous utility classes.
*/
package tech.ailef.dbadmin.external.misc;

View File

@ -0,0 +1,4 @@
/**
* Root package of Spring Boot Database Admin
*/
package tech.ailef.dbadmin.external;

View File

@ -0,0 +1,4 @@
/**
* Entity classes for the internal data source (action logs and user settings).
*/
package tech.ailef.dbadmin.internal.model;

View File

@ -0,0 +1,4 @@
/**
* Repositories for the internal data source.
*/
package tech.ailef.dbadmin.internal.repository;

View File

@ -0,0 +1,4 @@
/**
* Service classes for the internal data source.
*/
package tech.ailef.dbadmin.internal.service;