KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hero > util > values > BonitaRoleValue


1 package hero.util.values;
2
3 /**
4 *
5 * Bonita
6 * Copyright (C) 1999 Bull S.A.
7 * Bull 68 route de versailles 78434 Louveciennes Cedex France
8 * Further information: bonita@objectweb.org
9 *
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
33
34 import java.io.Serializable JavaDoc;
35 import java.util.Vector JavaDoc;
36
37 public final class BonitaRoleValue implements Serializable JavaDoc {
38
39     // --------------------------------------------------- Instance Variables
40

41     private String JavaDoc name="";
42     private String JavaDoc description="";
43     private BonitaMapperValue mapper=null;
44
45     // ----------------------------------------------------------- Properties
46

47     public String JavaDoc getName() {
48         return (name);
49     }
50     
51     public void setName(String JavaDoc name) {
52         this.name = name;
53     }
54     
55     public String JavaDoc getDescription() {
56         return (description);
57     }
58     
59     public void setDescription(String JavaDoc description) {
60         this.description = description;
61     }
62     
63     public BonitaMapperValue getMapper() {
64         return (mapper);
65     }
66     
67     public void setMapper(BonitaMapperValue mapper) {
68         this.mapper = mapper;
69     }
70     
71     public BonitaRoleValue(){}
72
73 }
74
Popular Tags