1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.waarp.openr66.protocol.localhandler.packet.json;
21
22 import org.waarp.openr66.protocol.localhandler.packet.LocalPacketFactory;
23
24
25
26
27 public class ConfigExportResponseJsonPacket extends ConfigExportJsonPacket {
28
29 protected byte command;
30 protected String filehost;
31 protected String filerule;
32 protected String filebusiness;
33 protected String filealias;
34 protected String fileroles;
35
36
37
38
39 public final byte getCommand() {
40 return command;
41 }
42
43
44
45
46 public final void setCommand(final byte command) {
47 this.command = command;
48 }
49
50
51
52
53 public final String getFilehost() {
54 return filehost;
55 }
56
57
58
59
60 public final void setFilehost(final String filehost) {
61 this.filehost = filehost;
62 }
63
64
65
66
67 public final String getFilerule() {
68 return filerule;
69 }
70
71
72
73
74 public final void setFilerule(final String filerule) {
75 this.filerule = filerule;
76 }
77
78
79
80
81 public final String getFilebusiness() {
82 return filebusiness;
83 }
84
85
86
87
88 public final void setFilebusiness(final String filebusiness) {
89 this.filebusiness = filebusiness;
90 }
91
92
93
94
95 public final String getFilealias() {
96 return filealias;
97 }
98
99
100
101
102 public final void setFilealias(final String filealias) {
103 this.filealias = filealias;
104 }
105
106
107
108
109 public final String getFileroles() {
110 return fileroles;
111 }
112
113
114
115
116 public final void setFileroles(final String fileroles) {
117 this.fileroles = fileroles;
118 }
119
120 @Override
121 public final void setRequestUserPacket() {
122 setRequestUserPacket(LocalPacketFactory.CONFEXPORTPACKET);
123 }
124 }