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 void
delete(String key)
void
delete(AuthModule authModule)
AuthModule
find(String key)
List<AuthModule>
findAll()
AuthModule
save(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)
-
-