Coverage Report - org.kuali.student.common.assembly.transform.DocumentTypeConfiguration
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentTypeConfiguration
0%
0/10
N/A
1
 
 1  
 package org.kuali.student.common.assembly.transform;
 2  
 
 3  
 import java.util.Map;
 4  
 
 5  0
 public class DocumentTypeConfiguration {
 6  
         private String documentType;
 7  
         private Map<String, String> docContentFieldMap;
 8  
         private String defaultDocumentTitle;
 9  
         
 10  
         public Map<String, String> getDocContentFieldMap() {
 11  0
                 return docContentFieldMap;
 12  
         }
 13  
         
 14  
         public void setDocContentFieldMap(Map<String, String> docContentFieldMap) {
 15  0
                 this.docContentFieldMap = docContentFieldMap;
 16  0
         }
 17  
         
 18  
         public String getDefaultDocumentTitle() {
 19  0
                 return defaultDocumentTitle;
 20  
         }
 21  
         
 22  
         /**
 23  
          * Used to set default document title. The documentTitle can use property path replacement
 24  
          * to set title based on fields found in data object.
 25  
          * 
 26  
          * @param defaultDocumentTitle (eg. "Proposal Title: ${proposal/name})
 27  
          */
 28  
         public void setDefaultDocumentTitle(String defaultDocumentTitle) {
 29  0
                 this.defaultDocumentTitle = defaultDocumentTitle;
 30  0
         }
 31  
         
 32  
         public String getDocumentType() {
 33  0
                 return documentType;
 34  
         }
 35  
         
 36  
         public void setDocumentType(String documentType) {
 37  0
                 this.documentType = documentType;
 38  0
         }        
 39  
         
 40  
 }