summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/models/Search.java
blob: 59a28b2181926fafb44f989eeacc2511292c1e41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package models;

public class Search {
	
	
	private String Software;
	private String Hochschule;
	private String Creator;
	private boolean ExistingImage;
	private boolean Rohling;
	public static Search search =new Search();

	public String getSoftware() {
		return Software;
	}
	public void setSoftware(String software) {
		Software = software;
	}
	public String getHochschule() {
		return Hochschule;
	}
	public void setHochschule(String hochschule) {
		Hochschule = hochschule;
	}
	public String getCreator() {
		return Creator;
	}
	public void setCreator(String creator) {
		Creator = creator;
	}
	public boolean isExistingImage() {
		return ExistingImage;
	}
	public void setExistingImage(boolean existingImage) {
		ExistingImage = existingImage;
	}
	public boolean isRohling() {
		return Rohling;
	}
	public void setRohling(boolean rohling) {
		Rohling = rohling;
	}
	
	

}