1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package tv.plex.domain;
16
17 import javax.xml.bind.annotation.XmlAttribute;
18 import javax.xml.bind.annotation.XmlRootElement;
19
20 @XmlRootElement
21 public class Location {
22 private String id;
23 private String path;
24
25
26
27 @XmlAttribute
28 public String getId() {
29 return id;
30 }
31
32
33
34 public void setId(String id) {
35 this.id = id;
36 }
37
38
39
40 @XmlAttribute
41 public String getPath() {
42 return path;
43 }
44
45
46
47 public void setPath(String path) {
48 this.path = path;
49 }
50
51 }