Package org.apache.shiro.aop

Examples of org.apache.shiro.aop.MethodInvocation


*/
public class ShiroActionFilter implements ActionFilter {

  public View match(final ActionContext actionContext) {
    try {
      ShiroAnnotationsAuthorizingMethodInterceptor.defaultAuth.assertAuthorized(new MethodInvocation() {
       
        public Object proceed() throws Throwable {
          throw Lang.noImplement();
        }
        public Object getThis() {
View Full Code Here


public class ShiroMethodInterceptor implements MethodInterceptor {

    public void filter(final InterceptorChain chain) throws Throwable {
       
      try {
            ShiroAnnotationsAuthorizingMethodInterceptor.defaultAuth.assertAuthorized(new MethodInvocation() {
             
                //这个方法不会被执行的.
              public Object proceed() throws Throwable {
                throw Lang.noImplement();
              }
View Full Code Here

TOP

Related Classes of org.apache.shiro.aop.MethodInvocation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.