View Javadoc

1   /**
2    * Copyright 2011 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   package org.kuali.mobility.maps.entity;
16  
17  public class MapsFormSearch {
18  
19  	private String searchText;
20  	private String searchLatitude;
21  	private String searchLongitude;
22  	private String searchBuilding;
23  	private String searchCampus;
24  	private String venueId;
25  	private String locationName;
26  
27  	public String getSearchCampus() {
28  		return searchCampus;
29  	}
30  
31  	public void setSearchCampus(String searchCampus) {
32  		this.searchCampus = searchCampus;
33  	}
34  
35  	public String getLocationName() {
36  		return locationName;
37  	}
38  
39  	public void setLocationName(String locationName) {
40  		this.locationName = locationName;
41  	}
42  
43  	public String getVenueId() {
44  		return venueId;
45  	}
46  
47  	public void setVenueId(String venueId) {
48  		this.venueId = venueId;
49  	}
50  
51  	public String getSearchLatitude() {
52  		return searchLatitude;
53  	}
54  
55  	public void setSearchLatitude(String searchLatitude) {
56  		this.searchLatitude = searchLatitude;
57  	}
58  
59  	public String getSearchLongitude() {
60  		return searchLongitude;
61  	}
62  
63  	public void setSearchLongitude(String searchLongitude) {
64  		this.searchLongitude = searchLongitude;
65  	}
66  
67  	public String getSearchBuilding() {
68  		return searchBuilding;
69  	}
70  
71  	public void setSearchBuilding(String searchBuilding) {
72  		this.searchBuilding = searchBuilding;
73  	}
74  
75  	public String getSearchText() {
76  		return searchText;
77  	}
78  
79  	public void setSearchText(String searchText) {
80  		this.searchText = searchText;
81  	}
82  	
83  }