Coverage Report - org.kuali.rice.krad.datadictionary.validation.constraint.CommonLookup
 
Classes in this File Line Coverage Branch Coverage Complexity
CommonLookup
0%
0/22
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 org.kuali.rice.krad.datadictionary.validation.constraint;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.List;
 20  
 
 21  
 
 22  
 /**
 23  
  * This class is a direct copy of one that was in Kuali Student. Look up constraints are currently not implemented. 
 24  
  * 
 25  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 26  
  * @since 1.1
 27  
  */
 28  0
 public class CommonLookup implements Serializable {
 29  
 
 30  
         private static final long serialVersionUID = 1L;
 31  
 
 32  
         private String id; // unique ID of this lookup
 33  
         private String name; // name of this search
 34  
         private String desc;
 35  
         private String searchTypeId;
 36  
         private String resultReturnKey;
 37  
     private String searchParamIdKey;
 38  
         private List<CommonLookupParam> params;
 39  
 
 40  
         public String getSearchTypeId() {
 41  0
                 return searchTypeId;
 42  
         }
 43  
 
 44  
         public void setSearchTypeId(String searchTypeId) {
 45  0
                 this.searchTypeId = searchTypeId;
 46  0
         }
 47  
 
 48  
         public String getResultReturnKey() {
 49  0
                 return resultReturnKey;
 50  
         }
 51  
 
 52  
         public void setResultReturnKey(String resultReturnKey) {
 53  0
                 this.resultReturnKey = resultReturnKey;
 54  0
         }
 55  
 
 56  
         public List<CommonLookupParam> getParams() {
 57  0
                 return params;
 58  
         }
 59  
 
 60  
         public void setParams(List<CommonLookupParam> params) {
 61  0
                 this.params = params;
 62  0
         }
 63  
 
 64  
         public String getId() {
 65  0
                 return id;
 66  
         }
 67  
 
 68  
         public void setId(String id) {
 69  0
                 this.id = id;
 70  0
         }
 71  
 
 72  
         public String getName() {
 73  0
                 return name;
 74  
         }
 75  
 
 76  
         public void setName(String name) {
 77  0
                 this.name = name;
 78  0
         }
 79  
 
 80  
         public String getDesc() {
 81  0
                 return desc;
 82  
         }
 83  
 
 84  
         public void setDesc(String desc) {
 85  0
                 this.desc = desc;
 86  0
         }
 87  
 
 88  
         public String getSearchParamIdKey() {
 89  0
                 return searchParamIdKey;
 90  
         }
 91  
 
 92  
         public void setSearchParamIdKey(String searchParamIdKey) {
 93  0
                 this.searchParamIdKey = searchParamIdKey;
 94  0
         }
 95  
 
 96  
 }