01: // Copyright 2004, 2005 The Apache Software Foundation
02: //
03: // Licensed under the Apache License, Version 2.0 (the "License");
04: // you may not use this file except in compliance with the License.
05: // You may obtain a copy of the License at
06: //
07: // http://www.apache.org/licenses/LICENSE-2.0
08: //
09: // 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.parse;
16:
17: import org.apache.hivemind.util.ToStringBuilder;
18:
19: /**
20: * Descriptor for the <interceptor> element.
21: *
22: * @author Howard Lewis Ship
23: */
24: public final class InterceptorDescriptor extends
25: AbstractServiceInvocationDescriptor {
26: private String _before;
27: private String _after;
28: private String _name;
29:
30: public String getAfter() {
31: return _after;
32: }
33:
34: public String getBefore() {
35: return _before;
36: }
37:
38: public void setAfter(String string) {
39: _after = string;
40: }
41:
42: public void setBefore(String string) {
43: _before = string;
44: }
45:
46: /**
47: * @return Returns the name.
48: */
49: public String getName() {
50: return _name;
51: }
52:
53: /**
54: * @param name The name to set.
55: */
56: public void setName(String name) {
57: this ._name = name;
58: }
59:
60: protected void extendDescription(ToStringBuilder builder) {
61: builder.append("before", _before);
62: builder.append("after", _after);
63: builder.append("name", _name);
64: }
65:
66: }
|