001/*
002 * Copyright 2011 The Kuali Foundation.
003 * 
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 * 
008 * http://www.opensource.org/licenses/ecl2.php
009 * 
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.ole.docstore.discovery.model;
017
018public class SearchCondition {
019
020    public String searchText;
021    public String operator;
022    public String docField;
023    public String searchScope;
024    private String fieldType = "string";// by default
025
026    public String getFieldType() {
027        return fieldType;
028    }
029
030    public void setFieldType(String fieldType) {
031        this.fieldType = fieldType;
032    }
033
034    public String getSearchText() {
035        return searchText;
036    }
037
038    public void setSearchText(String searchText) {
039        this.searchText = searchText;
040    }
041
042    public String getOperator() {
043        return operator;
044    }
045
046    public void setOperator(String operator) {
047        this.operator = operator;
048    }
049
050    public String getDocField() {
051        return docField;
052    }
053
054    public void setDocField(String docField) {
055        this.docField = docField;
056    }
057
058    public String getSearchScope() {
059        return searchScope;
060    }
061
062    public void setSearchScope(String searchScope) {
063        this.searchScope = searchScope;
064    }
065
066}