support/guice/src/main/java/org/apache/shiro/guice/aop/AopAllianceMethodInvocationAdapter.java [36:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Method getMethod() {
        return mi.getMethod();
    }

    public Object[] getArguments() {
        return mi.getArguments();
    }

    public String toString() {
        return "Method invocation [" + mi.getMethod() + "]";
    }

    public Object proceed() throws Throwable {
        return mi.proceed();
    }

    public Object getThis() {
        return mi.getThis();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



support/spring/src/main/java/org/apache/shiro/spring/security/interceptor/AopAllianceAnnotationsAuthorizingMethodInterceptor.java [76:93]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            public Method getMethod() {
                return mi.getMethod();
            }

            public Object[] getArguments() {
                return mi.getArguments();
            }

            public String toString() {
                return "Method invocation [" + mi.getMethod() + "]";
            }

            public Object proceed() throws Throwable {
                return mi.proceed();
            }

            public Object getThis() {
                return mi.getThis();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



