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

All Known Implementing Classes:
GroupServiceImpl

public interface GroupService

Example interface for a Group service.

Author:
Ulrik Sandberg

Method Summary
 void create(String name, Set members)
           
 void delete(Group group)
           
 List find(SearchCriteria criteria)
           
 List findAll()
           
 Group findByPrimaryKey(String name)
           
 void update(Group group)
           
 

Method Detail

create

void create(String name,
            Set members)

update

void update(Group group)

delete

void delete(Group group)

findByPrimaryKey

Group findByPrimaryKey(String name)

find

List find(SearchCriteria criteria)

findAll

List findAll()


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