Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getExecuteMethod (0.14 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

            }
        }
    
        @Override
        public ActionResponse hookBefore(final ActionRuntime runtime) {
            final String requestPath = runtime.getRequestPath();
            final String executeName = runtime.getExecuteMethod().getName();
            activityHelper.access(getUserBean(), requestPath, executeName);
            return super.hookBefore(runtime);
        }
    
        @Override
        public void hookFinally(final ActionRuntime runtime) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

                    if (user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray())) {
                        return;
                    }
                    final Method executeMethod = resource.getExecuteMethod();
                    final Secured secured = executeMethod.getAnnotation(Secured.class);
                    if (secured != null && user.hasRoles(secured.value())) {
                        return;
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top