1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package com.hack23.cia.service.api.action.admin;
20
21 import com.hack23.cia.service.api.action.common.AbstractRequest;
22
23
24
25
26
27 public final class UpdateApplicationConfigurationRequest extends AbstractRequest {
28
29
30 private static final long serialVersionUID = 1L;
31
32
33 private String sessionId;
34
35
36 private Long applicationConfigurationId;
37
38
39 private String configTitle;
40
41
42 private String configDescription;
43
44
45 private String componentTitle;
46
47
48 private String componentDescription;
49
50
51 private String propertyValue;
52
53
54
55
56 public UpdateApplicationConfigurationRequest() {
57 super();
58 }
59
60
61
62
63
64
65 public String getSessionId() {
66 return sessionId;
67 }
68
69
70
71
72
73
74
75 public void setSessionId(final String sessionId) {
76 this.sessionId = sessionId;
77 }
78
79
80
81
82
83
84 public Long getApplicationConfigurationId() {
85 return applicationConfigurationId;
86 }
87
88
89
90
91
92
93
94 public void setApplicationConfigurationId(final Long applicationConfigurationId) {
95 this.applicationConfigurationId = applicationConfigurationId;
96 }
97
98
99
100
101
102
103 public String getConfigTitle() {
104 return configTitle;
105 }
106
107
108
109
110
111
112
113 public void setConfigTitle(final String configTitle) {
114 this.configTitle = configTitle;
115 }
116
117
118
119
120
121
122 public String getConfigDescription() {
123 return configDescription;
124 }
125
126
127
128
129
130
131
132 public void setConfigDescription(final String configDescription) {
133 this.configDescription = configDescription;
134 }
135
136
137
138
139
140
141 public String getComponentTitle() {
142 return componentTitle;
143 }
144
145
146
147
148
149
150
151 public void setComponentTitle(final String componentTitle) {
152 this.componentTitle = componentTitle;
153 }
154
155
156
157
158
159
160 public String getComponentDescription() {
161 return componentDescription;
162 }
163
164
165
166
167
168
169
170 public void setComponentDescription(final String componentDescription) {
171 this.componentDescription = componentDescription;
172 }
173
174
175
176
177
178
179 public String getPropertyValue() {
180 return propertyValue;
181 }
182
183
184
185
186
187
188
189 public void setPropertyValue(final String propertyValue) {
190 this.propertyValue = propertyValue;
191 }
192
193 }