Uses of Class
tech.ailef.dbadmin.external.dbmapping.DbObjectSchema
Packages that use DbObjectSchema
Package
Description
Root package of Spring Boot Database Admin.
Representation of the user database and repository classes.
Miscellaneous utility classes.
-
Uses of DbObjectSchema in tech.ailef.dbadmin.external
Methods in tech.ailef.dbadmin.external that return DbObjectSchemaModifier and TypeMethodDescriptionDbAdmin.findSchemaByClass
(Class<?> klass) Finds a schema by its class objectDbAdmin.findSchemaByClassName
(String className) Finds a schema by its full class nameDbAdmin.findSchemaByTableName
(String tableName) Finds a schema by its table nameMethods in tech.ailef.dbadmin.external that return types with arguments of type DbObjectSchema -
Uses of DbObjectSchema in tech.ailef.dbadmin.external.dbmapping
Methods in tech.ailef.dbadmin.external.dbmapping that return DbObjectSchemaMethods in tech.ailef.dbadmin.external.dbmapping with parameters of type DbObjectSchemaModifier and TypeMethodDescriptionvoid
DbAdminRepository.attachManyToMany
(DbObjectSchema schema, Object id, Map<String, List<String>> params) Attaches multiple many to many relationships to an object, parsed from a multi -valued map.long
DbAdminRepository.count
(DbObjectSchema schema) long
DbAdminRepository.count
(DbObjectSchema schema, String query, Set<QueryFilter> queryFilters) Counts the elements that match the fuzzy searchDbAdminRepository.create
(DbObjectSchema schema, Map<String, String> values, Map<String, org.springframework.web.multipart.MultipartFile> files, String primaryKey) Create a new object with the specific primary key and values, returns the primary key of the created objectvoid
DbAdminRepository.delete
(DbObjectSchema schema, String id) Delete a specific objectDbAdminRepository.findAll
(DbObjectSchema schema, int page, int pageSize, String sortKey, String sortOrder) Find all the objects in the schema.DbAdminRepository.findById
(DbObjectSchema schema, Object id) Find an object by IDDbAdminRepository.search
(DbObjectSchema schema, String query) Fuzzy search on primary key value and display nameDbAdminRepository.search
(DbObjectSchema schema, String query, int page, int pageSize, String sortKey, String sortOrder, Set<QueryFilter> queryFilters) Fuzzy search on primary key value and display nameDbAdminRepository.search
(DbObjectSchema schema, String query, Set<QueryFilter> queryFilters) int
CustomJpaRepository.update
(DbObjectSchema schema, Map<String, String> params, Map<String, org.springframework.web.multipart.MultipartFile> files) void
DbAdminRepository.update
(DbObjectSchema schema, Map<String, String> params, Map<String, org.springframework.web.multipart.MultipartFile> files) Update an existing object with new values.Constructors in tech.ailef.dbadmin.external.dbmapping with parameters of type DbObjectSchemaModifierConstructorDescriptionCustomJpaRepository
(DbObjectSchema schema, jakarta.persistence.EntityManager em) DbObject
(Object instance, DbObjectSchema schema) -
Uses of DbObjectSchema in tech.ailef.dbadmin.external.dbmapping.fields
Methods in tech.ailef.dbadmin.external.dbmapping.fields that return DbObjectSchemaMethods in tech.ailef.dbadmin.external.dbmapping.fields with parameters of type DbObjectSchemaConstructors in tech.ailef.dbadmin.external.dbmapping.fields with parameters of type DbObjectSchemaModifierConstructorDescriptionDbField
(String javaName, String name, Field field, DbFieldType type, DbObjectSchema schema, String format) -
Uses of DbObjectSchema in tech.ailef.dbadmin.external.misc
Methods in tech.ailef.dbadmin.external.misc with parameters of type DbObjectSchemaModifier and TypeMethodDescriptionstatic Set<QueryFilter>
Utils.computeFilters
(DbObjectSchema schema, org.springframework.util.MultiValueMap<String, String> params) Converts a multi value map of parameters containing query filters applied with the faceted search feature into a set of QueryFilter objects