View Javadoc

1   /**
2    * Copyright 2011 The Kuali Foundation Licensed under the Educational Community
3    * License, Version 2.0 (the "License"); you may not use this file except in
4    * compliance with the License. You may obtain a copy of the License at
5    *
6    * http://www.osedu.org/licenses/ECL-2.0
7    *
8    * Unless required by applicable law or agreed to in writing, software
9    * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
10   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
11   * License for the specific language governing permissions and limitations under
12   * the License.
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  }