Can I intercept spring framework class using my custom Aspect like : Intercepting all public methods of : org.springframework.integration.mail.Pop3MailReceiver
@Aspect
public class Pop3MailReceiverAspect {
@AfterReturning(pointcut="execution(* org.springframework.integration.mail.Pop3MailReceiver.*(..))")
public void getNameAdvice(){
........
}