public interface AttackListLineDao
| Modifier and Type | Method and Description |
|---|---|
int |
countAttackListLinesInList(int attackListId) |
void |
delete(AttackListLine attackListLine)
Delete an attack list line in the database
|
AttackListLine |
findById(int id)
Retrieve an attack list line by id from the database
|
java.util.List<AttackListLine> |
getAll()
Select all attack list lines in the database
|
java.util.List<AttackListLine> |
getByAttackListId(int attackListId)
Select all attack list lines in the database corresponding to an attack list
|
void |
insertAll(AttackListLine... attackListLines)
Insert one or more attack list lines in the database
|
void |
update(AttackListLine attackListLine)
Update an attack list lien in the database
|
java.util.List<AttackListLine> getAll()
java.util.List<AttackListLine> getByAttackListId(int attackListId)
attackListId - the attack list idAttackListLine findById(int id)
id - int countAttackListLinesInList(int attackListId)
void insertAll(AttackListLine... attackListLines)
attackListLines - void update(AttackListLine attackListLine)
attackListLine - void delete(AttackListLine attackListLine)
attackListLine -