1
2
3
4
5
6
7
8
9
10
11
12
13
14 package org.kuali.mobility.people.dao;
15
16 import java.util.List;
17
18 import org.kuali.mobility.people.entity.Group;
19 import org.kuali.mobility.people.entity.Person;
20 import org.kuali.mobility.people.entity.SearchCriteria;
21 import org.kuali.mobility.people.entity.SearchResultImpl;
22
23 public class DirectoryWSDaoImpl implements DirectoryDao {
24
25 private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(DirectoryWSDaoImpl.class);
26
27 public SearchResultImpl findEntries(SearchCriteria search) {
28 throw new UnsupportedOperationException();
29 }
30
31 public Person lookupPerson(String personId) {
32 throw new UnsupportedOperationException();
33 }
34
35 public List<Group> findSimpleGroup(String groupId) {
36 throw new UnsupportedOperationException();
37 }
38
39 public Group lookupGroup(String groupId) {
40 throw new UnsupportedOperationException();
41 }
42 }