org.springframework.ldap.samples.person.service
Class GroupServiceImpl

java.lang.Object
  extended by org.springframework.ldap.samples.person.service.GroupServiceImpl
All Implemented Interfaces:
GroupService

public class GroupServiceImpl
extends Object
implements GroupService

Service implementation for managing the Group entity.

Author:
Ulrik Sandberg

Constructor Summary
GroupServiceImpl()
           
 
Method Summary
 void create(String name, Set members)
           
 void delete(Group group)
           
 List find(SearchCriteria criteria)
           
 List findAll()
           
 Group findByPrimaryKey(String name)
           
 void setGroupDao(GroupDao groupDao)
           
 void update(Group group)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GroupServiceImpl

public GroupServiceImpl()
Method Detail

setGroupDao

public void setGroupDao(GroupDao groupDao)

create

public void create(String name,
                   Set members)
Specified by:
create in interface GroupService

update

public void update(Group group)
Specified by:
update in interface GroupService

delete

public void delete(Group group)
Specified by:
delete in interface GroupService

findByPrimaryKey

public Group findByPrimaryKey(String name)
Specified by:
findByPrimaryKey in interface GroupService

findAll

public List findAll()
Specified by:
findAll in interface GroupService

find

public List find(SearchCriteria criteria)
Specified by:
find in interface GroupService


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