Coverage Report - org.kuali.rice.kew.lookupable.LookupForm
 
Classes in this File Line Coverage Branch Coverage Complexity
LookupForm
0%
0/26
N/A
1
 
 1  
 /*
 2  
  * Copyright 2005-2007 The Kuali Foundation
 3  
  * 
 4  
  * 
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  * 
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  * 
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.kuali.rice.kew.lookupable;
 18  
 
 19  
 import java.util.ArrayList;
 20  
 import java.util.List;
 21  
 import java.util.Map;
 22  
 
 23  
 import org.apache.struts.action.ActionForm;
 24  
 
 25  
 /**
 26  
  * Struts ActionForm for the {@link LookupAction}.
 27  
  *
 28  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 29  
  */
 30  0
 public class LookupForm extends ActionForm {
 31  
     
 32  
         private static final long serialVersionUID = -4397265394670795140L;
 33  
         private String formKey;
 34  
     private String backLocation;
 35  
     private Map fields;
 36  0
     private String methodToCall = "";
 37  
     private String lookupableImplServiceName;
 38  
     private String conversionFields;
 39  
     private Map fieldConversions;
 40  
     private String noReturnParams;
 41  
     
 42  
     /**
 43  
      * @return Returns the lookupableImplServiceName.
 44  
      */
 45  
     public String getLookupableImplServiceName() {
 46  0
         return lookupableImplServiceName;
 47  
     }
 48  
 
 49  
     /**
 50  
      * @param lookupableImplServiceName
 51  
      *            The lookupableImplServiceName to set.
 52  
      */
 53  
     public void setLookupableImplServiceName(String lookupableImplServiceName) {
 54  0
         this.lookupableImplServiceName = lookupableImplServiceName;
 55  0
     }
 56  
 
 57  
     /**
 58  
      * @return Returns the methodToCall.
 59  
      */
 60  
     public String getMethodToCall() {
 61  0
         return methodToCall;
 62  
     }
 63  
 
 64  
     /**
 65  
      * @param methodToCall
 66  
      *            The methodToCall to set.
 67  
      */
 68  
     public void setMethodToCall(String methodToCall) {
 69  0
         this.methodToCall = methodToCall;
 70  0
     }
 71  
 
 72  
     /**
 73  
      * @return Returns the backLocation.
 74  
      */
 75  
     public String getBackLocation() {
 76  0
         return backLocation;
 77  
     }
 78  
 
 79  
     /**
 80  
      * @param backLocation
 81  
      *            The backLocation to set.
 82  
      */
 83  
     public void setBackLocation(String backLocation) {
 84  0
         this.backLocation = backLocation;
 85  0
     }
 86  
 
 87  
     /**
 88  
      * @return Returns the formKey.
 89  
      */
 90  
     public String getFormKey() {
 91  0
         return formKey;
 92  
     }
 93  
 
 94  
     /**
 95  
      * @param formKey
 96  
      *            The formKey to set.
 97  
      */
 98  
     public void setFormKey(String formKey) {
 99  0
         this.formKey = formKey;
 100  0
     }
 101  
 
 102  
     /**
 103  
      * @return Returns the fields.
 104  
      */
 105  
     public Map getFields() {
 106  0
         return fields;
 107  
     }
 108  
 
 109  
     /**
 110  
      * @param fields
 111  
      *            The fields to set.
 112  
      */
 113  
     public void setFields(Map fields) {
 114  0
         this.fields = fields;
 115  0
     }
 116  
     public String getConversionFields() {
 117  0
         return conversionFields;
 118  
     }
 119  
     public void setConversionFields(String conversionFields) {
 120  0
         this.conversionFields = conversionFields;
 121  0
     }
 122  
     public String getNoReturnParams() {
 123  0
         return noReturnParams;
 124  
     }
 125  
     public void setNoReturnParams(String noReturnParams) {
 126  0
         this.noReturnParams = noReturnParams;
 127  0
     }
 128  
     public Map getFieldConversions() {
 129  0
         return fieldConversions;
 130  
     }
 131  
     public void setFieldConversions(Map fieldConversions) {
 132  0
         this.fieldConversions = fieldConversions;
 133  0
     }
 134  
 
 135  
 }