1 /** ------------------------------------
2 * SweetDEV RIA library
3 * Copyright [2006 - 2010] [Ideo Technologies]
4 * ------------------------------------
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 *
19 * For more information, please contact us at:
20 * Ideo Technologies S.A
21 * 124 rue de Verdun
22 * 92800 Puteaux - France
23 *
24 * France & Europe Phone : +33 1.46.25.09.60
25 *
26 *
27 * web : http://www.ideotechnologies.com
28 * email : SweetDEV-RIA@ideotechnologies.com
29 *
30 *
31 * @version ${pom.version}
32 * @author Ideo Technologies
33 */
34
35 package com.ideo.sweetdevria.config.elements;
36
37
38 import java.io.Serializable;
39
40 /**
41 * <p>A JavaBean representing the configuration information of a
42 * <code><plug-in></code> element in a ria configuration file.</p>
43 */
44 public class PropertyConfig implements Serializable {
45
46 /**
47 * Generated serial version UID.
48 */
49 private static final long serialVersionUID = -8542536598045295426L;
50
51 /**
52 * The key of this property
53 */
54 protected String key;
55 /**
56 * The value of this property
57 */
58 protected String value;
59
60 public String getKey() {
61 return key;
62 }
63
64 public void setKey(String key) {
65 this.key = key;
66 }
67
68 public String getValue() {
69 return value;
70 }
71
72 public void setValue(String value) {
73 this.value = value;
74 }
75 }
76