ManifestDeclareMetaXml.java
1.5 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.agent.xml.manifestdeclare;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "Meta")
public class ManifestDeclareMetaXml {
@XmlElement(name = "SNDR",required = false)
private String sndr;
@XmlElement(name = "RCVR",required = false)
private String rcvr;
@XmlElement(name = "SEQN",required = false)
private String seqn;
@XmlElement(name = "DDTM",required = false)
private String ddtm;
@XmlElement(name = "TYPE",required = false)
private String type;
@XmlElement(name = "STYP",required = false)
private String styp;
public String getSndr() {
return sndr;
}
public void setSndr(String sndr) {
this.sndr = sndr;
}
public String getRcvr() {
return rcvr;
}
public void setRcvr(String rcvr) {
this.rcvr = rcvr;
}
public String getSeqn() {
return seqn;
}
public void setSeqn(String seqn) {
this.seqn = seqn;
}
public String getDdtm() {
return ddtm;
}
public void setDdtm(String ddtm) {
this.ddtm = ddtm;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getStyp() {
return styp;
}
public void setStyp(String styp) {
this.styp = styp;
}
}