Coverage Report - org.kuali.student.enrollment.lpr.mock.LuiPersonRelationServiceDataDictionaryImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
LuiPersonRelationServiceDataDictionaryImpl
0%
0/6
N/A
1
 
 1  
 /*
 2  
  * Copyright 2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may        obtain a copy of the License at
 7  
  *
 8  
  *         http://www.osedu.org/licenses/ECL-2.0
 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.enrollment.lpr.mock;
 17  
 
 18  
 import org.kuali.student.enrollment.lpr.service.LuiPersonRelationService;
 19  
 import org.kuali.student.common.exceptions.*;
 20  
 
 21  
 import java.util.*;
 22  
 
 23  
 import org.kuali.student.common.dto.ContextInfo;
 24  
 import org.kuali.student.common.infc.HoldsDataDictionaryService;
 25  
 import org.kuali.student.datadictionary.dto.DictionaryEntryInfo;
 26  
 import org.kuali.student.datadictionary.service.DataDictionaryService;
 27  
 
 28  
 /**
 29  
  * @author nwright
 30  
  */
 31  0
 public class LuiPersonRelationServiceDataDictionaryImpl extends LuiPersonRelationServiceAdapter
 32  
         implements LuiPersonRelationService, HoldsDataDictionaryService {
 33  
 
 34  
     private DataDictionaryService dataDictionaryService;
 35  
 
 36  
     @Override
 37  
     public DataDictionaryService getDataDictionaryService() {
 38  0
         return dataDictionaryService;
 39  
     }
 40  
 
 41  
     @Override
 42  
     public void setDataDictionaryService(DataDictionaryService dataDictionaryService) {
 43  0
         this.dataDictionaryService = dataDictionaryService;
 44  0
     }
 45  
 
 46  
     @Override
 47  
     public DictionaryEntryInfo getDataDictionaryEntry(String entryKey, ContextInfo context)
 48  
             throws OperationFailedException, MissingParameterException, PermissionDeniedException, DoesNotExistException {
 49  0
         return dataDictionaryService.getDataDictionaryEntry(entryKey, context);
 50  
     }
 51  
 
 52  
     @Override
 53  
     public List<String> getDataDictionaryEntryKeys(ContextInfo context)
 54  
             throws OperationFailedException, MissingParameterException, PermissionDeniedException {
 55  0
         return this.dataDictionaryService.getDataDictionaryEntryKeys(context);
 56  
     }
 57  
 
 58  
 }
 59