Coverage Report - org.kuali.student.contract.model.impl.ServiceContractModelCache
 
Classes in this File Line Coverage Branch Coverage Complexity
ServiceContractModelCache
0%
0/19
0%
0/8
1.667
 
 1  
 /*
 2  
  * Copyright 2010 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.contract.model.impl;
 17  
 
 18  
 import java.util.List;
 19  
 
 20  
 import org.kuali.student.contract.model.MessageStructure;
 21  
 import org.kuali.student.contract.model.Service;
 22  
 import org.kuali.student.contract.model.ServiceContractModel;
 23  
 import org.kuali.student.contract.model.ServiceMethod;
 24  
 import org.kuali.student.contract.model.XmlType;
 25  
 
 26  
 /**
 27  
  * This reads the supplied spreadsheet but then caches it so it doesn't have to
 28  
  * re-read it again.
 29  
  * @author nwright
 30  
  */
 31  
 public class ServiceContractModelCache implements ServiceContractModel {
 32  
 
 33  
     private ServiceContractModel model;
 34  
 
 35  0
     public ServiceContractModelCache(ServiceContractModel model) {
 36  0
         this.model = model;
 37  0
     }
 38  0
     private List<ServiceMethod> serviceMethods = null;
 39  
 
 40  
     @Override
 41  
     public List<ServiceMethod> getServiceMethods() {
 42  0
         if (serviceMethods == null) {
 43  0
             serviceMethods = model.getServiceMethods();
 44  
         }
 45  0
         return serviceMethods;
 46  
     }
 47  
     private List<XmlType> xmlTypes;
 48  
 
 49  
     @Override
 50  
     public List<XmlType> getXmlTypes() {
 51  0
         if (xmlTypes == null) {
 52  0
             xmlTypes = model.getXmlTypes();
 53  
         }
 54  0
         return xmlTypes;
 55  
     }
 56  0
     private List<MessageStructure> messageStructures = null;
 57  
 
 58  
     @Override
 59  
     public List<MessageStructure> getMessageStructures() {
 60  0
         if (messageStructures == null) {
 61  0
             messageStructures = model.getMessageStructures();
 62  
         }
 63  0
         return messageStructures;
 64  
     }
 65  0
     private List<Service> services = null;
 66  
 
 67  
     @Override
 68  
     public List<Service> getServices() {
 69  0
         if (services == null) {
 70  0
             services = model.getServices();
 71  
         }
 72  0
         return services;
 73  
     }
 74  
 
 75  
     @Override
 76  
     public List<String> getSourceNames() {
 77  0
         return model.getSourceNames();
 78  
     }
 79  
 }