1 package org.kuali.ole.docstore.common.search;
2
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlType;
7
8
9 /**
10 * <p>Java class for searchCondition complex type.
11 *
12 * <p>The following schema fragment specifies the expected content contained within this class.
13 *
14 * <pre>
15 * <complexType name="searchCondition">
16 * <complexContent>
17 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18 * <sequence>
19 * <element name="operator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
20 * <element name="searchField" type="{}searchField" minOccurs="0"/>
21 * <element name="searchScope" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22 * </sequence>
23 * </restriction>
24 * </complexContent>
25 * </complexType>
26 * </pre>
27 *
28 *
29 */
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "searchCondition", propOrder = {
32 "operator",
33 "searchField",
34 "searchScope"
35 })
36 public class SearchCondition {
37
38 protected String operator;
39 protected SearchField searchField;
40 protected String searchScope;
41
42 /**
43 * Gets the value of the operator property.
44 *
45 * @return
46 * possible object is
47 * {@link String }
48 *
49 */
50 public String getOperator() {
51 return operator;
52 }
53
54 /**
55 * Sets the value of the operator property.
56 *
57 * @param value
58 * allowed object is
59 * {@link String }
60 *
61 */
62 public void setOperator(String value) {
63 this.operator = value;
64 }
65
66 /**
67 * Gets the value of the searchField property.
68 *
69 * @return
70 * possible object is
71 * {@link SearchField }
72 *
73 */
74 public SearchField getSearchField() {
75 return searchField;
76 }
77
78 /**
79 * Sets the value of the searchField property.
80 *
81 * @param value
82 * allowed object is
83 * {@link SearchField }
84 *
85 */
86 public void setSearchField(SearchField value) {
87 this.searchField = value;
88 }
89
90 /**
91 * Gets the value of the searchScope property.
92 *
93 * @return
94 * possible object is
95 * {@link String }
96 *
97 */
98 public String getSearchScope() {
99 return searchScope;
100 }
101
102 /**
103 * Sets the value of the searchScope property.
104 *
105 * @param value
106 * allowed object is
107 * {@link String }
108 *
109 */
110 public void setSearchScope(String value) {
111 this.searchScope = value;
112 }
113
114 }