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