/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.spring.aop; import com.liferay.portal.kernel.spring.aop.Skip; import java.lang.annotation.Annotation; import java.util.Collections; import org.aopalliance.intercept.MethodInterceptor; import org.aopalliance.intercept.MethodInvocation; /** * @author Shuyang Zhou */ public class SkipAdvice extends AnnotationChainableMethodAdvice<Skip> { @Override public Object before(MethodInvocation methodInvocation) throws Throwable { Skip skip = findAnnotation(methodInvocation); if (skip != _nullSkip) { MethodInterceptorsBag methodInterceptorsBag = serviceBeanAopCacheManager.getMethodInterceptorsBag( methodInvocation); if (methodInterceptorsBag == null) { return null; } MethodInterceptorsBag newMethodInterceptorsBag = new MethodInterceptorsBag( methodInterceptorsBag.getClassLevelMethodInterceptors(), Collections.<MethodInterceptor>emptyList()); serviceBeanAopCacheManager.putMethodInterceptorsBag( methodInvocation, newMethodInterceptorsBag); ServiceBeanMethodInvocation serviceBeanMethodInvocation = (ServiceBeanMethodInvocation)methodInvocation; serviceBeanMethodInvocation.setMethodInterceptors( Collections.<MethodInterceptor>emptyList()); } return null; } @Override public Skip getNullAnnotation() { return _nullSkip; } private static final Skip _nullSkip = new Skip() { @Override public Class<? extends Annotation> annotationType() { return Skip.class; } }; }