commit | author | age
|
d86ba2
|
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 Ablage implements ConfigurationElement { |
|
13 |
|
|
14 |
private String name; |
|
15 |
private String ort; |
|
16 |
|
|
17 |
@Override |
|
18 |
public String getName() { |
|
19 |
return name; |
|
20 |
} |
|
21 |
|
|
22 |
public void setName(String name) { |
|
23 |
this.name = name; |
|
24 |
} |
|
25 |
|
|
26 |
public String getOrt() { |
|
27 |
return ort; |
|
28 |
} |
|
29 |
|
|
30 |
public void setOrt(String ort) { |
|
31 |
this.ort = ort; |
|
32 |
} |
|
33 |
|
|
34 |
} |