Uses of Interface
org.dizitart.no2.repository.EntityDecorator
-
Packages that use EntityDecorator Package Description org.dizitart.no2 org.dizitart.no2.migration org.dizitart.no2.transaction -
-
Uses of EntityDecorator in org.dizitart.no2
Methods in org.dizitart.no2 with parameters of type EntityDecorator Modifier and Type Method Description <T> voidNitrite. destroyRepository(EntityDecorator<T> type)Destroys anObjectRepositorywithout opening it first.<T> voidNitrite. destroyRepository(EntityDecorator<T> type, String key)Destroys a keyed-ObjectRepositorywithout opening it first.<T> ObjectRepository<T>Nitrite. getRepository(EntityDecorator<T> entityDecorator)Opens a type-safe object repository using aEntityDecorator.<T> ObjectRepository<T>Nitrite. getRepository(EntityDecorator<T> entityDecorator, String key)Opens a type-safe object repository using aEntityDecoratorand a key identifier from the store.default <T> booleanNitrite. hasRepository(EntityDecorator<T> entityDecorator)Checks if a repository of the specified type described by theEntityDecoratorexists in the database.default <T> booleanNitrite. hasRepository(EntityDecorator<T> entityDecorator, String key)Checks if a keyed-repository of the specified type described by theEntityDecoratorexists in the database. -
Uses of EntityDecorator in org.dizitart.no2.migration
Methods in org.dizitart.no2.migration with parameters of type EntityDecorator Modifier and Type Method Description default DatabaseInstructionDatabaseInstruction. dropRepository(EntityDecorator<?> entityDecorator)Adds an instruction to drop anObjectRepositoryfrom the database.default DatabaseInstructionDatabaseInstruction. dropRepository(EntityDecorator<?> entityDecorator, String key)Adds an instruction to drop anObjectRepositoryfrom the database.default RepositoryInstructionInstructionSet. forRepository(EntityDecorator<?> entityDecorator)Creates aRepositoryInstruction.default RepositoryInstructionInstructionSet. forRepository(EntityDecorator<?> entityDecorator, String key)Creates aRepositoryInstruction. -
Uses of EntityDecorator in org.dizitart.no2.transaction
Methods in org.dizitart.no2.transaction with parameters of type EntityDecorator Modifier and Type Method Description <T> ObjectRepository<T>Transaction. getRepository(EntityDecorator<T> entityDecorator)Gets anObjectRepositoryto perform transactional operations on it.<T> ObjectRepository<T>Transaction. getRepository(EntityDecorator<T> entityDecorator, String key)Gets anObjectRepositoryto perform transactional operations on it.
-