Package mil.nga.geopackage.db
Class GeoPackageDaoManager
- java.lang.Object
-
- mil.nga.geopackage.db.GeoPackageDaoManager
-
public class GeoPackageDaoManager extends Object
GeoPackage DAO Manager for cleaning up ORMLite caches- Since:
- 3.1.0
- Author:
- osbornb
-
-
Constructor Summary
Constructors Constructor Description GeoPackageDaoManager()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
unregisterDao(ConnectionSource connectionSource, Class<?> clazz)
Unregister the providedstatic void
unregisterDao(ConnectionSource connectionSource, Class<?>... classes)
Unregister the provided DAO class types with the connection sourcestatic void
unregisterDaos(ConnectionSource connectionSource)
Unregister all GeoPackage DAO with the connection source
-
-
-
Method Detail
-
unregisterDaos
public static void unregisterDaos(ConnectionSource connectionSource)
Unregister all GeoPackage DAO with the connection source- Parameters:
connectionSource
- connection source
-
unregisterDao
public static void unregisterDao(ConnectionSource connectionSource, Class<?>... classes)
Unregister the provided DAO class types with the connection source- Parameters:
connectionSource
- connection sourceclasses
- DAO class types
-
unregisterDao
public static void unregisterDao(ConnectionSource connectionSource, Class<?> clazz)
Unregister the provided- Parameters:
connectionSource
- connection sourceclazz
- DAO class type
-
-