1 package org.fosstrak.epcis.model;
2
3 import javax.xml.bind.annotation.XmlAccessType;
4 import javax.xml.bind.annotation.XmlAccessorType;
5 import javax.xml.bind.annotation.XmlType;
6 import javax.xml.bind.annotation.XmlValue;
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 @XmlAccessorType(XmlAccessType.FIELD)
26 @XmlType(name = "EPC", namespace = "urn:epcglobal:xsd:1", propOrder = { "value" })
27 public class EPC {
28
29 @XmlValue
30 protected String value;
31
32
33
34
35
36
37 public String getValue() {
38 return value;
39 }
40
41
42
43
44
45
46
47 public void setValue(String value) {
48 this.value = value;
49 }
50
51 }