org.springframework.ldap.samples.person.service
Interface PersonService

All Known Implementing Classes:
PersonServiceImpl

public interface PersonService

Example interface for a Person service.

Author:
Mattias Arthursson, Ulrik Sandberg

Method Summary
 void create(String country, String company, String fullname, String lastname, String[] description)
           
 void delete(Person person)
           
 List find(SearchCriteria criteria)
           
 List findAll()
           
 Person findByPrimaryKey(String country, String company, String name)
           
 void update(Person person)
           
 

Method Detail

create

void create(String country,
            String company,
            String fullname,
            String lastname,
            String[] description)

update

void update(Person person)

delete

void delete(Person person)

findByPrimaryKey

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

find

List find(SearchCriteria criteria)

findAll

List findAll()


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