Package com.logigear.spring.mvc.security

Examples of com.logigear.spring.mvc.security.LogigearMethodSecurityExpressionRoot


public abstract class LogigearMethodSecurityExpresstionHandler<ER extends LogigearMethodSecurityExpressionRoot> extends DefaultMethodSecurityExpressionHandler implements MethodSecurityExpressionHandler {

    @Override
    protected MethodSecurityExpressionOperations createSecurityExpressionRoot(Authentication authentication, MethodInvocation invocation) {
  LogigearMethodSecurityExpressionRoot root = getExpressionRootInstance(authentication, invocation);
  root.setPermissionEvaluator(getPermissionEvaluator());
  return root;
    }
View Full Code Here

TOP

Related Classes of com.logigear.spring.mvc.security.LogigearMethodSecurityExpressionRoot

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.