Abstract base regular expression pointcut bean. JavaBean properties are:
pattern: regular expression for the fully-qualified method names to match.
The exact regexp syntax will depend on the subclass (e.g. Perl5 regular expressions)
patterns: alternative property taking a String array of patterns. The result will
be the union of these patterns.
Note: the regular expressions must be a match. For example,
.*get.* will match com.mycom.Foo.getBar().
get.* will not.
This base class is serializable. Subclasses should declare all fields transient
- the initPatternRepresentation method in this class will be invoked again on the
client side on deserialization.
Note: the regular expressions must be a match. For example,
.*get.*will match com.mycom.Foo.getBar().get.*will not.This base class is serializable. Subclasses should declare all fields transient - the initPatternRepresentation method in this class will be invoked again on the client side on deserialization.