| Package | Description |
|---|---|
| com.javax0.djcproxy | |
| com.javax0.djcproxy.filters |
| Modifier and Type | Method and Description |
|---|---|
Class<?> |
ProxyClassCache.get(Class<?> originalClass,
CallbackFilter filter,
ClassLoader classLoader) |
void |
ProxyClassCache.put(Class<?> originalClass,
CallbackFilter filter,
ClassLoader classLoader,
Class<?> proxyClass) |
void |
ProxyFactory.setCallbackFilter(CallbackFilter callbackFilter)
Set a valid callback filter.
|
| Modifier and Type | Class and Description |
|---|---|
class |
All
Callback filter that accepts all methods.
|
class |
And
Callback filter that accepts a method if both filterA and filterB accept the
method.
|
class |
Classes
Callback filter that accepts the methods which are declared in one of the
classes that are specified in the constructor.
|
class |
Name
Callback filter that accepts the method for which the names are specified in
the constructor.
|
class |
None
Callback filter that does not accept any method.
|
class |
NonObject
A callback filter that accepts all methods that are implemented above the
Object level.
|
class |
Not
Callback filter that accepts a method if the underlying filter does not
accept the method.
|
class |
Or
Callback filter that accepts a method of either filterA or filterB accept the
method.
|
| Modifier and Type | Method and Description |
|---|---|
static CallbackFilter |
Filter.all() |
static CallbackFilter |
Filter.and(CallbackFilter a,
CallbackFilter b) |
static CallbackFilter |
Filter.classes(Class<?>... objects) |
static CallbackFilter |
Filter.intercept(String... names) |
static CallbackFilter |
Filter.none() |
static CallbackFilter |
Filter.nonObject() |
static CallbackFilter |
Filter.not(CallbackFilter a) |
static CallbackFilter |
Filter.object() |
static CallbackFilter |
Filter.or(CallbackFilter a,
CallbackFilter b) |
| Modifier and Type | Method and Description |
|---|---|
static CallbackFilter |
Filter.and(CallbackFilter a,
CallbackFilter b) |
static CallbackFilter |
Filter.not(CallbackFilter a) |
static CallbackFilter |
Filter.or(CallbackFilter a,
CallbackFilter b) |
| Constructor and Description |
|---|
And(CallbackFilter filterA,
CallbackFilter filterB) |
Not(CallbackFilter filter) |
Or(CallbackFilter filterA,
CallbackFilter filterB) |
Copyright © 2013. All Rights Reserved.