01: /*
02: * Copyright 2002-2006 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.springframework.aop.support;
18:
19: import org.aopalliance.aop.Advice;
20:
21: import org.springframework.aop.ClassFilter;
22: import org.springframework.aop.Pointcut;
23:
24: /**
25: * Convenient class for name-match method pointcuts that hold an Advice,
26: * making them an Advisor.
27: *
28: * @author Juergen Hoeller
29: * @author Rob Harrop
30: * @see NameMatchMethodPointcut
31: */
32: public class NameMatchMethodPointcutAdvisor extends
33: AbstractGenericPointcutAdvisor {
34:
35: private final NameMatchMethodPointcut pointcut = new NameMatchMethodPointcut();
36:
37: public NameMatchMethodPointcutAdvisor() {
38: }
39:
40: public NameMatchMethodPointcutAdvisor(Advice advice) {
41: setAdvice(advice);
42: }
43:
44: /**
45: * Set the {@link ClassFilter} to use for this pointcut.
46: * Default is {@link ClassFilter#TRUE}.
47: * @see NameMatchMethodPointcut#setClassFilter
48: */
49: public void setClassFilter(ClassFilter classFilter) {
50: this .pointcut.setClassFilter(classFilter);
51: }
52:
53: /**
54: * Convenience method when we have only a single method name to match.
55: * Use either this method or <code>setMappedNames</code>, not both.
56: * @see #setMappedNames
57: * @see NameMatchMethodPointcut#setMappedName
58: */
59: public void setMappedName(String mappedName) {
60: this .pointcut.setMappedName(mappedName);
61: }
62:
63: /**
64: * Set the method names defining methods to match.
65: * Matching will be the union of all these; if any match,
66: * the pointcut matches.
67: * @see NameMatchMethodPointcut#setMappedNames
68: */
69: public void setMappedNames(String[] mappedNames) {
70: this .pointcut.setMappedNames(mappedNames);
71: }
72:
73: /**
74: * Add another eligible method name, in addition to those already named.
75: * Like the set methods, this method is for use when configuring proxies,
76: * before a proxy is used.
77: * @param name name of the additional method that will match
78: * @return this pointcut to allow for multiple additions in one line
79: * @see NameMatchMethodPointcut#addMethodName
80: */
81: public NameMatchMethodPointcut addMethodName(String name) {
82: return this .pointcut.addMethodName(name);
83: }
84:
85: public Pointcut getPointcut() {
86: return this.pointcut;
87: }
88:
89: }
|