KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > hivemind > lib > chain > ChainContribution


1 // Copyright 2005 The Apache Software Foundation
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14

15 package org.apache.hivemind.lib.chain;
16
17 /**
18  * A contribution used with {@link org.apache.hivemind.lib.chain.ChainFactory}.
19  *
20  * @author Howard M. Lewis Ship
21  * @since 1.1
22  */

23 public class ChainContribution
24 {
25     private String JavaDoc _id;
26
27     private String JavaDoc _before;
28
29     private String JavaDoc _after;
30
31     private Object JavaDoc _command;
32
33     public String JavaDoc getAfter()
34     {
35         return _after;
36     }
37
38     public void setAfter(String JavaDoc after)
39     {
40         _after = after;
41     }
42
43     public String JavaDoc getBefore()
44     {
45         return _before;
46     }
47
48     public void setBefore(String JavaDoc before)
49     {
50         _before = before;
51     }
52
53     public Object JavaDoc getCommand()
54     {
55         return _command;
56     }
57
58     public void setCommand(Object JavaDoc command)
59     {
60         _command = command;
61     }
62
63     public String JavaDoc getId()
64     {
65         return _id;
66     }
67
68     public void setId(String JavaDoc id)
69     {
70         _id = id;
71     }
72 }
Popular Tags