1 16 17 package org.springframework.aop; 18 19 import org.aopalliance.intercept.MethodInvocation; 20 21 33 public interface ProxyMethodInvocation extends MethodInvocation { 34 35 39 Object getProxy(); 40 41 48 MethodInvocation invocableClone(); 49 50 59 MethodInvocation invocableClone(Object [] arguments); 60 61 68 void setUserAttribute(String key, Object value); 69 70 76 Object getUserAttribute(String key); 77 78 } 79 | Popular Tags |