Example usage for org.springframework.aop AfterReturningAdvice interface-usage

List of usage examples for org.springframework.aop AfterReturningAdvice interface-usage

Introduction

In this page you can find the example usage for org.springframework.aop AfterReturningAdvice interface-usage.

Usage

From source file com.ipn.app.advice.BitacoraAspect.java

/**
 *
 * @author dml
 */
public class BitacoraAspect implements AfterReturningAdvice {
    public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {

From source file AOP.LogAfterAdvice.java

/**
 *
 * @author Karim
 */
public class LogAfterAdvice implements AfterReturningAdvice {

From source file AOP.LogAfter.java

/**
 *
 * @author Karim
 */
public class LogAfter implements AfterReturningAdvice {

From source file net.bioclipse.recording.IRecordingAdvice.java

public interface IRecordingAdvice extends AfterReturningAdvice {

}

From source file org.openmrs.module.usagestatistics668.advice.VisitServiceAdvice.java

/**
 * AOP class used to intercept and log calls to VisitService methods
 * @author Jonathan
 */
public class VisitServiceAdvice implements MethodBeforeAdvice, AfterReturningAdvice {

From source file org.openmrs.module.restmodule.advice.RestAdministrationAdvisor.java

/**
 * This class is intended to wrap around the org.openmrs.api.AdministrationService.
 */
public class RestAdministrationAdvisor implements AfterReturningAdvice {

    /**

From source file org.jasig.cas.stat.advice.LogTicketStatisticsAfterReturningAdvice.java

/**
 * After returning AOP advice which updates <code>TicketStatistics</code>
 * state at the specific target's object joinpoints.
 * <p>
 * Note: the joinpoints captured by a pointcut are assumed to be the ones that
 * deal with <code>Ticket's</code> state. Those joinpoints (method invocation

From source file org.openmrs.module.clinicalsummary.advice.EncounterCreatedAdvice.java

/**
 * 
 */
public class EncounterCreatedAdvice implements AfterReturningAdvice {

    private static final Log log = LogFactory.getLog(EncounterCreatedAdvice.class);

From source file org.openmrs.module.jmx.aop.SchedulerServiceInterceptor.java

/**
 * Interceptor on the scheduler service to catch new tasks being added and existing ones being deleted
 */
public class SchedulerServiceInterceptor implements AfterReturningAdvice {

    protected Log log = LogFactory.getLog(SchedulerServiceInterceptor.class);

From source file org.openmrs.module.jmx.aop.AdministrationServiceInterceptor.java

/**
 * Interceptor on the administration service to catch modules being loaded/unloaded
 */
public class AdministrationServiceInterceptor implements AfterReturningAdvice {

    protected Log log = LogFactory.getLog(AdministrationServiceInterceptor.class);