1 package net.sf.appstatus.support.aop;
2
3 import org.aopalliance.intercept.MethodInvocation;
4
5 public interface IAppStatusActivationCallback {
6
7 /**
8 * This method allows enable/disable AppStatus dynamically.
9 *
10 * @param invocation
11 * @return true if AppStatus should be use for this call.
12 */
13 boolean isActive(MethodInvocation invocation);
14
15 }