Clover Coverage Report - Kuali Student 1.1-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Mar 3 2011 04:02:59 EST
../../../../../../img/srcFileCovDistChart0.png 49% of files have more coverage
6   54   6   1
0   35   1   6
6     1  
1    
 
  QueryParamInfo       Line # 27 6 0% 6 12 0% 0.0
 
No Tests
 
1    /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10    * software distributed under the License is distributed on an "AS IS"
11    * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12    * or implied. See the License for the specific language governing
13    * permissions and limitations under the License.
14    */
15   
16    package org.kuali.student.core.search.dto;
17    import java.io.Serializable;
18   
19    import javax.xml.bind.annotation.XmlAccessType;
20    import javax.xml.bind.annotation.XmlAccessorType;
21    import javax.xml.bind.annotation.XmlAttribute;
22    import javax.xml.bind.annotation.XmlElement;
23   
24    import org.kuali.student.core.dictionary.old.dto.FieldDescriptor;
25   
26    @XmlAccessorType(XmlAccessType.FIELD)
 
27    public class QueryParamInfo implements Serializable {
28    private static final long serialVersionUID = 1L;
29    @XmlElement(namespace="http://student.kuali.org/wsdl/dictionary")
30    private FieldDescriptor fieldDescriptor;
31    @XmlAttribute
32    private String key;
33    @XmlAttribute
34    private boolean optional;
35   
 
36  0 toggle public FieldDescriptor getFieldDescriptor(){
37  0 return fieldDescriptor;
38    }
 
39  0 toggle public void setFieldDescriptor(FieldDescriptor fieldDescriptor){
40  0 this.fieldDescriptor = fieldDescriptor;
41    }
 
42  0 toggle public String getKey(){
43  0 return key;
44    }
 
45  0 toggle public void setKey(String key){
46  0 this.key = key;
47    }
 
48  0 toggle public boolean isOptional() {
49  0 return optional;
50    }
 
51  0 toggle public void setOptional(boolean optional) {
52  0 this.optional = optional;
53    }
54    }