org.springframework.ldap.samples.person.dao
Interface GroupDao

All Known Implementing Classes:
DummyGroupDao, GroupDaoImpl

public interface GroupDao

Data Access Object interface for the Group entity.

Author:
Ulrik Sandberg

Method Summary
 void create(Group group)
           
 void delete(Group group)
           
 List find(SearchCriteria criteria)
           
 List findAll()
           
 Group findByPrimaryKey(String name)
           
 void update(Group group)
           
 void updateMemberDn(String originalDn, String newDn)
          Update all groups referring to the original DN with the new DN value.
 

Method Detail

create

void create(Group group)

update

void update(Group group)

delete

void delete(Group group)

findByPrimaryKey

Group findByPrimaryKey(String name)

findAll

List findAll()

find

List find(SearchCriteria criteria)

updateMemberDn

void updateMemberDn(String originalDn,
                    String newDn)
Update all groups referring to the original DN with the new DN value.

Parameters:
originalDn - the original DN.
newDn - the new DN.


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