List of usage examples for org.springframework.aop IntroductionInterceptor interface-usage
From source file com.clican.pluto.fsm.engine.impl.EventQueue.java
/**
* This class is used to implement the asynchronous event process.
* <p>
* It is implement by Spring AOP Framework. In the spring configuration file. We
* shall configure which kind of interface invocation shall be interpreted by
* this class. And then this class will use the <code>ThreadPoolExecutor</code>
From source file net.bioclipse.structuredb.persistency.dao.FetchIntroductionInterceptor.java
/** * @author jonalv */ public class FetchIntroductionInterceptor implements IntroductionInterceptor { public Object invoke(MethodInvocation invocation) throws Throwable {
From source file com.abbhsoft.jpadaoframework.dao.advisor.FinderIntroductionInterceptor.java
/**
* Connects the Spring AOP with the Hibernate DAO.
*
* For any method beginning with "find" this interceptor will use the FinderExecutor to call a
* Hibernate named query.
*
From source file org.jdal.aop.SerializableIntroductionInterceptor.java
/**
* Introducction interceptor for serializable objects.
*
* @author Jose Luis Martin
* @since 2.0
*/
From source file org.jdal.aop.DelegateFactoryIntroductionInterceptor.java
/**
* DelegatingIntroductionInterceptor that use a Factory to create delegates.
* <p>
* Note: this class include code from {@link org.springframework.aop.support.DelegatePerTargetObjectIntroductionInterceptor}
* </p>
* @author Jose Luis Martin
From source file com.easyjf.core.i18n.I18nInteceptor.java
public class I18nInteceptor implements IntroductionInterceptor { // private static final Logger logger = // Logger.getLogger(I18nInteceptor.class); // private static final Method
From source file org.springframework.aop.support.DelegatingIntroductionInterceptor.java
/**
* Convenient implementation of the IntroductionInterceptor interface.
*
* <p>Subclasses merely need to extend this class and implement the interfaces
* to be introduced themselves. In this case the delegate is the subclass
* instance itself. Alternatively a separate delegate may implement the
From source file org.springframework.cloud.sleuth.annotation.SleuthAdvisorConfig.java
/** * Interceptor that creates or continues a span depending on the provided * annotation. Also it adds logs and tags if necessary. */ class SleuthInterceptor implements IntroductionInterceptor, BeanFactoryAware {