public interface AttackListDao
Modifier and Type | Method and Description |
---|---|
int |
countAttackLists() |
void |
delete(AttackList attackList)
Delete an attack list in the database
|
AttackList |
findById(int id)
Retrieve an attack list by its id
|
java.util.List<AttackList> |
getAll()
Get all attack lists
|
void |
insertAll(AttackList... attackLists)
Insert one or more attack lists in the database
|
void |
update(AttackList attackList)
Update an attack list in the database
|
java.util.List<AttackList> getAll()
AttackList findById(int id)
id
- int countAttackLists()
void insertAll(AttackList... attackLists)
attackLists
- void update(AttackList attackList)
attackList
- void delete(AttackList attackList)
attackList
-