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 BusinessRequestJsonPacket extends JsonPacket {
28
29 protected boolean isToApplied;
30 protected String className;
31 protected String arguments;
32 protected String extraArguments;
33 protected int delay;
34 protected boolean isValidated;
35
36
37
38
39 public final boolean isValidated() {
40 return isValidated;
41 }
42
43
44
45
46 public final void setValidated(final boolean isValidated) {
47 this.isValidated = isValidated;
48 }
49
50
51
52
53 public final boolean isToApplied() {
54 return isToApplied;
55 }
56
57
58
59
60 public final void setToApplied(final boolean isToApplied) {
61 this.isToApplied = isToApplied;
62 }
63
64
65
66
67 public final String getClassName() {
68 return className;
69 }
70
71
72
73
74 public final void setClassName(final String className) {
75 this.className = className;
76 }
77
78
79
80
81 public final String getArguments() {
82 return arguments;
83 }
84
85
86
87
88 public final void setArguments(final String arguments) {
89 this.arguments = arguments;
90 }
91
92
93
94
95 public final String getExtraArguments() {
96 return extraArguments;
97 }
98
99
100
101
102 public final void setExtraArguments(final String extraArguments) {
103 this.extraArguments = extraArguments;
104 }
105
106
107
108
109 public final int getDelay() {
110 return delay;
111 }
112
113
114
115
116 public final void setDelay(final int delay) {
117 this.delay = delay;
118 }
119
120 @Override
121 public final void setRequestUserPacket() {
122 setRequestUserPacket(LocalPacketFactory.BUSINESSREQUESTPACKET);
123 }
124 }