Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Coles (0.01 sec)

  1. src/main/java/org/codelibs/fess/opensearch/user/exentity/User.java

            if (password != null) {
                sourceMap.put("password", password);
            }
            if (groups != null) {
                sourceMap.put("groups", groups);
            }
            if (roles != null) {
                sourceMap.put("roles", roles);
            }
            if (attributes != null) {
                sourceMap.putAll(attributes);
            }
            return sourceMap;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. src/main/config/es/fess_log_search_log.json

              },
              "requestedAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "responseTime" : {
                "type" : "long"
              },
              "roles" : {
                "type" : "keyword"
              },
              "searchWord" : {
                "type" : "keyword"
              },
              "user" : {
                "type" : "keyword"
              },
              "userAgent" : {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Apr 12 15:00:27 UTC 2019
    - 2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

            protected String[] groups;
    
            /** The user roles. */
            protected String[] roles;
    
            /** The user permissions. */
            protected String[] permissions;
    
            /**
             * Creates a new OpenID Connect user.
             *
             * @param name the user name
             * @param groups the user groups
             * @param roles the user roles
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/RoleService.java

        protected UserBhv userBhv;
    
        /**
         * Constructor.
         */
        public RoleService() {
            super();
        }
    
        /**
         * Gets a list of roles based on the pager.
         * @param rolePager The pager for roles.
         * @return A list of roles.
         */
        public List<Role> getRoleList(final RolePager rolePager) {
    
            final PagingResultBean<Role> roleList = roleBhv.selectPage(cb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

             * @param groups The groups.
             * @param roles The roles.
             */
            public SamlUser(final String nameId, final String sessionIndex, final String nameIdFormat, final String nameidNameQualifier,
                    final String nameidSPNameQualifier, final String[] groups, final String[] roles) {
                this.nameId = nameId;
                this.sessionIndex = sessionIndex;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

         * @param roles array of roles to filter results
         * @param fields array of fields to search in
         * @param excludes array of words to exclude from results
         * @return list of popular words matching the criteria
         */
        public List<String> getWordList(final SearchRequestType searchRequestType, final String seed, final String[] tags, final String[] roles,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

                this.groups = groups;
            }
    
            /**
             * Sets the user's role assignments.
             * @param roles Array of role names.
             */
            public void setRoles(final String[] roles) {
                this.roles = roles;
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/user/exbhv/UserBhv.java

    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.util.DfTypeUtil;
    
    /**
     * @author FreeGen
     */
    public class UserBhv extends BsUserBhv {
    
        private static final String ROLES = "roles";
        private static final String GROUPS = "groups";
        private static final String PASSWORD = "password";
        private static final String NAME = "name";
    
        private String indexName = null;
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java

        private static final long serialVersionUID = 1L;
    
        /** The action class that requires specific user roles */
        private final Class<?> actionClass;
    
        /**
         * Constructs a new UserRoleLoginException with the specified action class.
         *
         * @param actionClass the action class that requires specific user roles
         */
        public UserRoleLoginException(final Class<RootAction> actionClass) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. src/main/config/es/fess_user_user.json

                "type" : "keyword"
              },
              "preferredLanguage" : {
                "type" : "keyword"
              },
              "registeredAddress" : {
                "type" : "keyword"
              },
              "roles" : {
                "type" : "keyword"
              },
              "roomNumber" : {
                "type" : "keyword"
              },
              "state" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top