blob: de6a18edf9306d562901a881bfae00411420825f (
plain)
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
|
package pl.edu.mimuw.cloudatlas.client;
class Query {
private String name;
private String value;
// Query() {
// this.name = "";
// this.value = "";
// }
//
// Query(String name, String value){
// this.name = name;
// this.value = value;
// }
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
|