1 /* 2 * Copyright 2012 The Kuali Foundation 3 * 4 * Licensed under the the Educational Community License, Version 1.0 5 * (the "License"); you may not use this file except in compliance 6 * with the License. You may obtain a copy of the License at 7 * 8 * http://www.opensource.org/licenses/ecl1.php 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package org.kuali.student.common.spring; 17 18 import java.io.Serializable; 19 import java.util.List; 20 21 import org.kuali.student.r1.common.dictionary.dto.ObjectStructureDefinition; 22 import org.kuali.student.r1.common.dictionary.service.DictionaryService; 23 24 25 /** 26 * This class exists soley to test the WebServiceAwareSpringBeanPostProcessor class. 27 * 28 * @author Kuali Student Team 29 */ 30 public class FakeDictionaryServiceDecoratorImpl extends AbstractFakeService implements DictionaryService, Serializable { 31 32 33 34 @Override 35 public List<String> getObjectTypes() { 36 // TODO Auto-generated method stub 37 return null; 38 } 39 40 @Override 41 public ObjectStructureDefinition getObjectStructure(String objectTypeKey) { 42 // TODO Auto-generated method stub 43 return null; 44 } 45 46 @Override 47 public String toString() { 48 return getClass().getName(); 49 } 50 51 52 }