Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 905 for permission (0.07 sec)

  1. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

                return null;
            }
            if (permission.startsWith(fessConfig.getRoleSearchUserPrefix())
                    && permission.length() > fessConfig.getRoleSearchUserPrefix().length()) {
                return aclPrefix + userPrefix + permission.substring(fessConfig.getRoleSearchUserPrefix().length());
            }
            if (permission.startsWith(fessConfig.getRoleSearchGroupPrefix())
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/fe.tld

        <example>${fe:message("labels.foobar", "default value")}</example>
      </function>
    
      <function>
        <description>Check if user has a permission.</description>
        <name>permission</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>boolean hasActionRole(java.lang.String)</function-signature>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            LOGIN_FAILURE,
            /**
             * The update permission action.
             */
            UPDATE_PERMISSION;
        }
    
        /**
         * Set the logger name.
         * @param loggerName The logger name.
         */
        public void setLoggerName(final String loggerName) {
            this.loggerName = loggerName;
        }
    
        /**
         * Set the permission separator.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Checks if a permission string is a user permission.
         *
         * @param permission The permission string.
         * @return true if it is a user permission, false otherwise.
         */
        public boolean isUserPermission(final String permission) {
            if (StringUtil.isNotBlank(permission)) {
                return permission.startsWith(ComponentUtil.getFessConfig().getRoleSearchUserPrefix());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

            // nothing
        }
    
        /**
         * Checks if the current user has permission to access the given resource.
         * For admin actions, verifies that the user has appropriate admin roles or
         * meets the secured annotation requirements.
         *
         * @param resource the login handling resource to check permission for
         * @throws LoginRequiredException if login is required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SearchHelper.java

         *
         * @param searchRequestParams The search request parameters
         * @param data The search render data to populate with results
         * @param userBean Optional user information for permission checking
         */
        public void search(final SearchRequestParams searchRequestParams, final SearchRenderData data,
                final OptionalThing<FessUserBean> userBean) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/entity/FessUserTest.java

            assertArrayEquals(permissions, user.getPermissions());
    
            // Test with empty permissions
            permissions = new String[] {};
            user = new TestFessUser("testuser", new String[] {}, new String[] {}, permissions);
            assertArrayEquals(permissions, user.getPermissions());
    
            // Test with null permissions
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            assertEquals("read", permissions[0]);
    
            // Test with multiple permissions
            testUser.setPermissions(new String[] { "read", "write", "delete" });
            permissions = fessUserBean.getPermissions();
            assertEquals(3, permissions.length);
            assertEquals("read", permissions[0]);
            assertEquals("write", permissions[1]);
            assertEquals("delete", permissions[2]);
        }
    
        public void test_getRoles() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  9. LICENSES/vendor/github.com/containerd/errdefs/pkg/LICENSE

          the terms of any separate license agreement you may have executed
          with Licensor regarding such Contributions.
    
       6. Trademarks. This License does not grant permission to use the trade
          names, trademarks, service marks, or product names of the Licensor,
          except as required for reasonable and customary use in describing the
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 05 11:36:39 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  10. LICENSE.txt

          the terms of any separate license agreement you may have executed
          with Licensor regarding such Contributions.
    
       6. Trademarks. This License does not grant permission to use the trade
          names, trademarks, service marks, or product names of the Licensor,
          except as required for reasonable and customary use in describing the
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 23 14:02:28 UTC 2012
    - 11.1K bytes
    - Viewed (0)
Back to top