Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 266 for role3 (0.77 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java

        public String confirmPassword;
    
        /**
         * The attributes map for the user.
         */
        public Map<String, String> attributes = new HashMap<>();
    
        /**
         * The roles assigned to the user.
         */
        public String[] roles;
    
        /**
         * The groups assigned to the user.
         */
        public String[] groups;
    
        /**
         * Initializes the form with default values for creating a new user.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                }
            } catch (Exception e) {
                // Expected for null URL
            }
    
            // Test with empty role and virtual host lists
            Map<String, Object> emptyListsMap = new HashMap<>();
            emptyListsMap.put("url", "http://test.com");
            emptyListsMap.put("role", new ArrayList<String>());
            emptyListsMap.put("virtual_host", new ArrayList<String>());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

        /**
         * ID of the role type.
         */
        public String id;
    
        /**
         * Name of the role type.
         */
        public String name;
    
        /**
         * Value of the role type.
         */
        public String value;
    
        /**
         * Sort order of the role type.
         */
        public String sortOrder;
    
        /**
         * The user who created the role type.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/AdminDictAction.java

     *
     */
    public class AdminDictAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminDictAction() {
            super();
        }
    
        /** The role for this action. */
        public static final String ROLE = "admin-dict";
    
        // ===================================================================================
        //                                                                           Attribute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/footer.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <footer role="contentinfo">
    	<div class="container text-center">
    		<p class="text-muted">
    			<la:message key="labels.footer.copyright" />
    		</p>
    	</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 233 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/RolePager.java

        /**
         * Current page number in pagination.
         */
        private int currentPageNumber;
    
        /**
         * ID of the role.
         */
        public String id;
    
        /**
         * Name of the role.
         */
        public String name;
    
        /**
         * Version number of the role.
         */
        public String versionNo;
    
        /**
         * Clears the pager's state.
         */
        public void clear() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/role/admin_role.jsp

        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="user"/>
            <jsp:param name="menuType" value="role"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.role" class="col-sm-3 text-sm-right col-form-label">role</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.role"/>
                                            <la:textarea styleId="doc.role"
                                                         property="doc.role" styleClass="form-control"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess_log.search_log/search_log.json

              "mapping": {
                "type": "keyword"
              }
            }
          }
        ],
        "properties": {
          "user": {
            "type": "keyword"
          },
          "roles": {
            "type": "keyword"
          },
          "queryId": {
            "type": "keyword"
          },
          "searchWord": {
            "type": "keyword"
          },
          "requestedAt": {
            "type": "date",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Feb 25 13:38:21 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            }
            return map;
        }
    
        /**
         * Generates a unique document ID from the provided data map.
         * Constructs an ID string from URL, roles, and virtual hosts, then generates a hash.
         *
         * @param dataMap the document data map containing URL, roles, and virtual host information
         * @return a unique hashed ID string for the document
         */
        public String generateId(final Map<String, Object> dataMap) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
Back to top