Interface PersonDao
-
- All Known Implementing Classes:
OdmPersonDaoImpl,PersonDaoImpl
public interface PersonDaoData Access Object interface for the Person entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(Person person)voiddelete(Person person)java.util.List<Person>findAll()PersonfindByPrimaryKey(java.lang.String country, java.lang.String company, java.lang.String fullname)java.util.List<java.lang.String>getAllPersonNames()voidupdate(Person person)
-
-
-
Method Detail
-
create
void create(Person person)
-
update
void update(Person person)
-
delete
void delete(Person person)
-
getAllPersonNames
java.util.List<java.lang.String> getAllPersonNames()
-
findAll
java.util.List<Person> findAll()
-
findByPrimaryKey
Person findByPrimaryKey(java.lang.String country, java.lang.String company, java.lang.String fullname)
-
-