1 /*
2 * Copyright 2010 James Pether Sörling
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 * $Id$
17 * $HeadURL$
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 * The Class UpdateApplicationConfigurationRequest.
26 */
27 public final class UpdateApplicationConfigurationRequest extends AbstractRequest {
28
29 /** The Constant serialVersionUID. */
30 private static final long serialVersionUID = 1L;
31
32 /** The session id. */
33 private String sessionId;
34
35 /** The application configuration id. */
36 private Long applicationConfigurationId;
37
38 /** The config title. */
39 private String configTitle;
40
41 /** The config description. */
42 private String configDescription;
43
44 /** The component title. */
45 private String componentTitle;
46
47 /** The component description. */
48 private String componentDescription;
49
50 /** The property value. */
51 private String propertyValue;
52
53 /**
54 * Instantiates a new update application configuration request.
55 */
56 public UpdateApplicationConfigurationRequest() {
57 super();
58 }
59
60 /**
61 * Gets the session id.
62 *
63 * @return the session id
64 */
65 public String getSessionId() {
66 return sessionId;
67 }
68
69 /**
70 * Sets the session id.
71 *
72 * @param sessionId
73 * the new session id
74 */
75 public void setSessionId(final String sessionId) {
76 this.sessionId = sessionId;
77 }
78
79 /**
80 * Gets the application configuration id.
81 *
82 * @return the application configuration id
83 */
84 public Long getApplicationConfigurationId() {
85 return applicationConfigurationId;
86 }
87
88 /**
89 * Sets the application configuration id.
90 *
91 * @param applicationConfigurationId
92 * the new application configuration id
93 */
94 public void setApplicationConfigurationId(final Long applicationConfigurationId) {
95 this.applicationConfigurationId = applicationConfigurationId;
96 }
97
98 /**
99 * Gets the config title.
100 *
101 * @return the config title
102 */
103 public String getConfigTitle() {
104 return configTitle;
105 }
106
107 /**
108 * Sets the config title.
109 *
110 * @param configTitle
111 * the new config title
112 */
113 public void setConfigTitle(final String configTitle) {
114 this.configTitle = configTitle;
115 }
116
117 /**
118 * Gets the config description.
119 *
120 * @return the config description
121 */
122 public String getConfigDescription() {
123 return configDescription;
124 }
125
126 /**
127 * Sets the config description.
128 *
129 * @param configDescription
130 * the new config description
131 */
132 public void setConfigDescription(final String configDescription) {
133 this.configDescription = configDescription;
134 }
135
136 /**
137 * Gets the component title.
138 *
139 * @return the component title
140 */
141 public String getComponentTitle() {
142 return componentTitle;
143 }
144
145 /**
146 * Sets the component title.
147 *
148 * @param componentTitle
149 * the new component title
150 */
151 public void setComponentTitle(final String componentTitle) {
152 this.componentTitle = componentTitle;
153 }
154
155 /**
156 * Gets the component description.
157 *
158 * @return the component description
159 */
160 public String getComponentDescription() {
161 return componentDescription;
162 }
163
164 /**
165 * Sets the component description.
166 *
167 * @param componentDescription
168 * the new component description
169 */
170 public void setComponentDescription(final String componentDescription) {
171 this.componentDescription = componentDescription;
172 }
173
174 /**
175 * Gets the property value.
176 *
177 * @return the property value
178 */
179 public String getPropertyValue() {
180 return propertyValue;
181 }
182
183 /**
184 * Sets the property value.
185 *
186 * @param propertyValue
187 * the new property value
188 */
189 public void setPropertyValue(final String propertyValue) {
190 this.propertyValue = propertyValue;
191 }
192
193 }