commit | author | age
|
86bbf7
|
1 |
/* |
U |
2 |
* To change this license header, choose License Headers in Project Properties. |
|
3 |
* To change this template file, choose Tools | Templates |
|
4 |
* and open the template in the editor. |
|
5 |
*/ |
|
6 |
package de.uhilger.mediaz.entity; |
|
7 |
|
|
8 |
/** |
|
9 |
* |
|
10 |
* @author ulrich |
|
11 |
*/ |
|
12 |
public class Einstellung { |
|
13 |
private String key; |
|
14 |
private String value; |
|
15 |
|
|
16 |
public String getKey() { |
|
17 |
return key; |
|
18 |
} |
|
19 |
|
|
20 |
public void setKey(String key) { |
|
21 |
this.key = key; |
|
22 |
} |
|
23 |
|
|
24 |
public String getValue() { |
|
25 |
return value; |
|
26 |
} |
|
27 |
|
|
28 |
public void setValue(String value) { |
|
29 |
this.value = value; |
|
30 |
} |
|
31 |
|
|
32 |
|
|
33 |
} |