
com.harium.database.module.DatabaseModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core classes of Harium Database
The newest version!
package com.harium.database.module;
import com.harium.database.model.BaseDAO;
public interface DatabaseModule {
void init(boolean clearDatabase);
void register(BaseDAO, T> dao);
void clear() throws Exception;
BaseDAO getDAO(Class klass);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy