01: package hero.util.values;
02:
03: /**
04: *
05: * Bonita
06: * Copyright (C) 1999 Bull S.A.
07: * Bull 68 route de versailles 78434 Louveciennes Cedex France
08: * Further information: bonita@objectweb.org
09: *
10: * This library is free software; you can redistribute it and/or
11: * modify it under the terms of the GNU Lesser General Public
12: * License as published by the Free Software Foundation; either
13: * version 2.1 of the License, or any later version.
14: *
15: * This library is distributed in the hope that it will be useful,
16: * but WITHOUT ANY WARRANTY; without even the implied warranty of
17: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18: * Lesser General Public License for more details.
19: *
20: * You should have received a copy of the GNU Lesser General Public
21: * License along with this library; if not, write to the Free Software
22: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23: * USA
24: *
25: *
26: --------------------------------------------------------------------------
27: * $Id: BonitaRoleValue.java,v 1.1 2005/03/18 14:55:18 mvaldes Exp $
28: *
29: --------------------------------------------------------------------------
30: */
31:
32: import java.io.Serializable;
33: import java.util.Vector;
34:
35: public final class BonitaRoleValue implements Serializable {
36:
37: // --------------------------------------------------- Instance Variables
38:
39: private String name = "";
40: private String description = "";
41: private BonitaMapperValue mapper = null;
42:
43: // ----------------------------------------------------------- Properties
44:
45: public String getName() {
46: return (name);
47: }
48:
49: public void setName(String name) {
50: this .name = name;
51: }
52:
53: public String getDescription() {
54: return (description);
55: }
56:
57: public void setDescription(String description) {
58: this .description = description;
59: }
60:
61: public BonitaMapperValue getMapper() {
62: return (mapper);
63: }
64:
65: public void setMapper(BonitaMapperValue mapper) {
66: this .mapper = mapper;
67: }
68:
69: public BonitaRoleValue() {
70: }
71:
72: }
|