org.springframework.ldap.samples.article.dao
Interface PersonDao

All Known Implementing Classes:
PersonDaoImpl, TraditionalPersonDaoImpl

public interface PersonDao

Data Access Object interface for the Person entity.

Author:
Mattias Arthursson, Ulrik Sandberg

Method Summary
 void create(Person person)
           
 void delete(Person person)
           
 List findAll()
           
 Person findByPrimaryKey(String country, String company, String fullname)
           
 List getAllPersonNames()
           
 void update(Person person)
           
 

Method Detail

create

void create(Person person)

update

void update(Person person)

delete

void delete(Person person)

getAllPersonNames

List getAllPersonNames()

findAll

List findAll()

findByPrimaryKey

Person findByPrimaryKey(String country,
                        String company,
                        String fullname)


Copyright © 2006-2011 Spring Framework. All Rights Reserved.