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
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-2009 Spring Framework. All Rights Reserved.