Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 266 for Rrole1 (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

                return entity;
            });
        }
    
        /**
         * Registers available roles and labels for use in web config forms.
         * Includes role types, label types, and label setting configuration.
         *
         * @param data the render data to register the roles and labels with
         */
        protected void registerRolesAndLabels(final RenderData data) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Whether LDAP role search for role is enabled.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getLdapRoleSearchRoleEnabled();
    
        /**
         * Is the property for the key 'ldap.role.search.role.enabled' true? <br>
         * The value is, e.g. true <br>
         * comment: Whether LDAP role search for role is enabled.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

            if (StringUtil.isNotBlank(forumLink)) {
                runtime.registerData("forumLink", forumLink);
            }
        }
    
        /**
         * Get the action role.
         * @return The action role.
         */
        protected abstract String getActionRole();
    
        /**
         * Writes data to the specified file path.
         *
         * @param path the file path to write to
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

        }
    
        @Override
        protected String getActionRole() {
            return ROLE;
        }
    
        /**
         * Show the index page.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            saveToken();
            return asListHtml();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java

        /**
         * Redirects an authenticated user to the appropriate admin interface based on their roles.
         * Users with admin roles are redirected to the dashboard, while other users are redirected
         * to their designated admin action class or to the root if no specific action is available.
         *
         * @param user the authenticated user bean containing role information
         * @return HTML response redirecting to the appropriate admin interface
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java

            assertEquals("******@****.***", permissionHelper.encode("{user}******@****.***"));
            assertEquals("2group-name", permissionHelper.encode("{group}group-name"));
            assertEquals("Rrole.name", permissionHelper.encode("{role}role.name"));
            assertEquals("1user_123", permissionHelper.encode("{user}user_123"));
            assertEquals("2group$special", permissionHelper.encode("{group}group$special"));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_en.properties

    labels.geo=Geo
    labels.groups=Groups
    labels.hash=Hash
    labels.kuromojiFile=Kuromoji File
    labels.maxSize=Max Size
    labels.order=Order
    labels.purgeSuggestSearchLogDay=Delete old suggest info
    labels.q=Query
    labels.roles=Roles
    labels.suggestSearchLog=Suggest Search Log
    labels.suggestWord=Suggest Word
    labels.targetLabel=Label
    labels.term=Term
    labels.fields=Fields
    labels.ex_q=Extended Query
    labels.oldPassword=Current Password
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

        }
    
        /**
         * Returns the action role for this admin action.
         *
         * @return the role name
         */
        @Override
        protected String getActionRole() {
            return ROLE;
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java

        private User createTestUser(String username, String password) {
            User user = new User();
            user.setName(username);
            user.setPassword(password);
            user.setRoles(new String[] { "role1", "role2" });
            user.setGroups(new String[] { "group1", "group2" });
            return user;
        }
    
        // Test LdapManager implementation
        private static class TestLdapManager extends LdapManager {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  10. android/pom.xml

          <name>Kevin Bourrillion</name>
          <email>******@****.***</email>
          <organization>Google</organization>
          <organizationUrl>http://www.google.com</organizationUrl>
          <roles>
            <role>owner</role>
            <role>developer</role>
          </roles>
          <timezone>-8</timezone>
        </developer>
      </developers>
      <ciManagement>
        <system>GitHub Actions</system>
        <url>https://github.com/google/guava/actions</url>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
Back to top