01: /**
02: * EasyBeans
03: * Copyright (C) 2007 Bull S.A.S.
04: * Contact: easybeans@ow2.org
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * version 2.1 of the License, or any later version.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * You should have received a copy of the GNU Lesser General Public
17: * License along with this library; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19: * USA
20: *
21: * --------------------------------------------------------------------------
22: * $Id: ActivationConfig.java 1970 2007-10-16 11:49:25Z benoitf $
23: * --------------------------------------------------------------------------
24: */package org.ow2.easybeans.deployment.xml.struct.common;
25:
26: /**
27: * This class defines the implementation of the <activation-config>
28: * element.
29: * @author Florent Benoit
30: */
31: public class ActivationConfig {
32:
33: /**
34: * Name of this element.
35: */
36: public static final String NAME = "activation-config";
37:
38: /**
39: * Name of the property.
40: */
41: private String name = null;
42:
43: /**
44: * Value of the property.
45: */
46: private String value = null;
47:
48: /**
49: * Gets the name of the activation config.
50: * @return the name of the activation config
51: */
52: public String getName() {
53: return name;
54: }
55:
56: /**
57: * Sets the name of the activation config.
58: * @param name the name of the activation config
59: */
60: public void setName(final String name) {
61: this .name = name;
62: }
63:
64: /**
65: * Gets the value of the activation config.
66: * @return the value of the activation config
67: */
68: public String getValue() {
69: return value;
70: }
71:
72: /**
73: * Sets the value of the activation config.
74: * @param value the value of the activation config
75: */
76: public void setValue(final String value) {
77: this.value = value;
78: }
79:
80: }
|