Coverage Report - edu.sampleu.kew.krad.form.IngesterForm
 
Classes in this File Line Coverage Branch Coverage Complexity
IngesterForm
0%
0/16
N/A
1
 
 1  
 /**
 2  
  * Copyright 2005-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.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 edu.sampleu.kew.krad.form;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.List;
 20  
 
 21  
 import org.kuali.rice.krad.web.form.UifFormBase;
 22  
 import org.springframework.web.multipart.MultipartFile;
 23  
 
 24  
 /**
 25  
  * This is a description of what this class does - Venkat don't forget to fill this in. 
 26  
  * 
 27  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 28  
  *
 29  
  */
 30  
 public class IngesterForm  extends UifFormBase {
 31  
 
 32  
         private static final long serialVersionUID = -6874672285597100759L;
 33  
         
 34  
         private List<MultipartFile> files;
 35  
         
 36  
         /**
 37  
          * @return the files
 38  
          */
 39  
         public List<MultipartFile> getFiles() {
 40  0
                 return this.files;
 41  
         }
 42  
 
 43  
         /**
 44  
          * @param files the files to set
 45  
          */
 46  
         public void setFiles(List<MultipartFile> files) {
 47  0
                 this.files = files;
 48  0
         }
 49  
 
 50  0
         public IngesterForm(){
 51  0
                 files = new ArrayList<MultipartFile>();
 52  0
                 files.add(null);
 53  0
                 files.add(null);
 54  0
                 files.add(null);
 55  0
                 files.add(null);
 56  0
                 files.add(null);
 57  0
                 files.add(null);
 58  0
                 files.add(null);
 59  0
                 files.add(null);
 60  0
                 files.add(null);
 61  0
                 files.add(null);
 62  0
         }
 63  
 
 64  
 }