Coverage Report - org.kuali.rice.kns.datadictionary.exporter.InquiryMapBuilder
 
Classes in this File Line Coverage Branch Coverage Complexity
InquiryMapBuilder
0%
0/20
0%
0/6
3
 
 1  
 /*
 2  
  * Copyright 2005-2007 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.opensource.org/licenses/ecl2.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.rice.kns.datadictionary.exporter;
 17  
 
 18  
 import java.util.Iterator;
 19  
 
 20  
 import org.kuali.rice.kns.datadictionary.FieldDefinition;
 21  
 import org.kuali.rice.kns.datadictionary.InquiryDefinition;
 22  
 import org.kuali.rice.kns.datadictionary.InquirySectionDefinition;
 23  
 import org.kuali.rice.kns.datadictionary.BusinessObjectEntry;
 24  
 import org.kuali.rice.krad.datadictionary.exporter.ExportMap;
 25  
 
 26  
 /**
 27  
  * InquiryMapBuilder
 28  
  * 
 29  
  * 
 30  
  */
 31  
 @Deprecated
 32  
 public class InquiryMapBuilder {
 33  
 
 34  
     /**
 35  
      * Default constructor
 36  
      */
 37  0
     public InquiryMapBuilder() {
 38  0
     }
 39  
 
 40  
 
 41  
     /**
 42  
      * @param inquiry
 43  
      * @return ExportMap containing the standard entries for the entry's InquiryDefinition, or null if the given entry has no
 44  
      *         inquiryDefinition
 45  
      */
 46  
     public ExportMap buildInquiryMap(BusinessObjectEntry entry) {
 47  
             try {
 48  0
                 ExportMap inquiryMap = null;
 49  
         
 50  0
                 if (entry.hasInquiryDefinition()) {
 51  0
                     InquiryDefinition inquiryDefinition = entry.getInquiryDefinition();
 52  0
                     inquiryMap = new ExportMap("inquiry");
 53  
         
 54  0
                     inquiryMap.set("title", inquiryDefinition.getTitle());
 55  
         
 56  0
                     inquiryMap.set(buildInquiryFieldsMap(inquiryDefinition));
 57  
                 }
 58  
         
 59  0
                 return inquiryMap;
 60  0
             } catch ( Exception ex ) {
 61  0
                     throw new RuntimeException( "Unable to build inquiry Map for " + entry, ex );
 62  
             }
 63  
     }
 64  
 
 65  
     private ExportMap buildInquiryFieldsMap(InquiryDefinition inquiryDefinition) {
 66  0
         ExportMap inquiryFieldsMap = new ExportMap("inquiryFields");
 67  
 
 68  0
         for (Iterator i = inquiryDefinition.getInquirySections().iterator(); i.hasNext();) {
 69  0
             InquirySectionDefinition inquirySection = (InquirySectionDefinition) i.next();
 70  0
             for (Iterator iter = inquirySection.getInquiryFields().iterator(); iter.hasNext();) {
 71  0
                 FieldDefinition FieldDefinition = (FieldDefinition) iter.next();
 72  0
                 inquiryFieldsMap.set(MapperUtils.buildFieldMap(FieldDefinition));
 73  0
             }
 74  0
         }
 75  
 
 76  0
         return inquiryFieldsMap;
 77  
     }
 78  
 }