KickJava   Java API By Example, From Geeks To Geeks.

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


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: BonitaInterHookValue.java,v 1.1 2005/03/18 14:55:18 mvaldes Exp $
28 *
29 --------------------------------------------------------------------------
30 */

31
32 import java.io.Serializable JavaDoc;
33 import java.util.Vector JavaDoc;
34
35 public final class BonitaInterHookValue implements Serializable JavaDoc {
36
37     // --------------------------------------------------- Instance Variables
38

39     private String JavaDoc name="";
40     private String JavaDoc event="";
41     private String JavaDoc script;
42     private int type;
43
44     // ----------------------------------------------------------- Properties
45

46     public String JavaDoc getName() {
47         return (name);
48     }
49     
50     public void setName(String JavaDoc name) {
51         this.name = name;
52     }
53     
54     public String JavaDoc getEvent() {
55         return (event);
56     }
57     
58     public void setEvent(String JavaDoc event) {
59         this.event= event;
60     }
61     
62     public String JavaDoc getScript() {
63         return (script);
64     }
65     
66     public void setScript(String JavaDoc script) {
67         this.script= script;
68     }
69     
70     public int getType() {
71         return (type);
72     }
73     
74     public void setType(int type) {
75         this.type= type;
76     }
77     
78     public BonitaInterHookValue(){}
79
80 }
81
Popular Tags