Interface AuthModuleDAO
-
- All Superinterfaces:
DAO<AuthModule>
- All Known Implementing Classes:
JPAAuthModuleDAO
public interface AuthModuleDAO extends DAO<AuthModule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(String key)voiddelete(AuthModule authModule)AuthModulefind(String key)List<AuthModule>findAll()AuthModulesave(AuthModule authModule)
-
-
-
Method Detail
-
find
AuthModule find(String key)
-
findAll
List<AuthModule> findAll()
-
save
AuthModule save(AuthModule authModule)
-
delete
void delete(String key)
-
delete
void delete(AuthModule authModule)
-
-