PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Want more features on Pastebin?
Sign Up
, it's FREE!
Public Pastes
Untitled
2 sec ago
Untitled
2 sec ago
Untitled
7 sec ago
Untitled
9 sec ago
Untitled
19 sec ago
Untitled
19 sec ago
Untitled
20 sec ago
Der Maennerstrich
20 sec ago
Untitled
By: a guest on
Oct 2nd, 2011
| syntax:
None
| size: 0.23 KB | views:
49
| expires: Never
download
|
raw
|
embed
|
report abuse
|
print
This paste has a previous version,
view the difference
.
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
class A {
@AroundInvoke
Object invoke(InvocationContext ctx) throws Exception {
return ctx.proceed();
}
public void nonInterceptedMethod() {
}
@Interceptors(A.class)
public void interceptedMethod() {
}
}
clone
this paste
RAW Paste Data
class A { @AroundInvoke Object invoke(InvocationContext ctx) throws Exception { return ctx.proceed(); } public void nonInterceptedMethod() { } @Interceptors(A.class) public void interceptedMethod() { } }