View Javadoc

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.r1.common.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.r1.common.dictionary.old.dto.FieldDescriptor;
25  
26  @Deprecated
27  @XmlAccessorType(XmlAccessType.FIELD)
28  public class QueryParamInfo implements Serializable {
29  	private static final long serialVersionUID = 1L;
30  	@XmlElement(namespace="http://student.kuali.org/wsdl/dictionary")
31  	private FieldDescriptor fieldDescriptor; 
32  	@XmlAttribute
33  	private String key; 
34  	@XmlAttribute
35  	private boolean optional;
36  	
37  	public FieldDescriptor getFieldDescriptor(){
38  		return fieldDescriptor;
39  	}
40  	public void setFieldDescriptor(FieldDescriptor fieldDescriptor){
41  		this.fieldDescriptor = fieldDescriptor;
42  	}
43  	public String getKey(){
44  		return key;
45  	}
46  	public void setKey(String key){
47  		this.key = key;
48  	}
49  	public boolean isOptional() {
50  		return optional;
51  	}
52  	public void setOptional(boolean optional) {
53  		this.optional = optional;
54  	}
55  }