Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 266 for role2 (0.02 sec)

  1. src/main/resources/esclient.xml

    		</postConstruct>
    		<!-- fess_user index -->
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_user.user/user"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_user.role/role"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_user.group/group"</arg>
    		</postConstruct>
    		<!-- fess_log index -->
    		<postConstruct name="addIndexConfig">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/role/EditBody.java

     */
    package org.codelibs.fess.app.web.api.admin.role;
    
    import org.codelibs.fess.app.web.admin.role.EditForm;
    
    /**
     * Request body class for role edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for role management operations.
     */
    public class EditBody extends EditForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  3. src/main/config/es/fess_user_role.json

    {
      "fess_user.role" : {
        "aliases" : { },
        "mappings" : {
          "role" : {
            "properties" : {
              "name" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021059090",
            "number_of_shards" : "5",
            "number_of_replicas" : "1",
            "uuid" : "ugUWT7UpRCau5xEMgWOBsw",
            "version" : {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 517 bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

    public class AdminSearchlogAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminSearchlogAction() {
            super();
        }
    
        /** Role name for admin search log operations */
        public static final String ROLE = "admin-searchlog";
    
        private static final String[] CONDITION_FIELDS =
                { "logType", "queryId", "userSessionId", "accessType", "requestedTimeRange", "pageSize" };
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

        /**
         * Default constructor.
         */
        public AdminDictMappingAction() {
            super();
        }
    
        /**
         * The role for this action.
         */
        public static final String ROLE = "admin-dict";
    
        private static final Logger logger = LogManager.getLogger(AdminDictMappingAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.hash=Hachage
    labels.kuromojiFile=Fichier Kuromoji
    labels.maxSize=Taille maximale
    labels.order=Ordre
    labels.purgeSuggestSearchLogDay=Supprimer les anciennes informations de suggestion
    labels.q=Requête
    labels.roles=Rôles
    labels.suggestSearchLog=Journal de recherche de suggestions
    labels.suggestWord=Suggérer un mot
    labels.targetLabel=Étiquette
    labels.term=Terme
    labels.fields=Champs
    labels.ex_q=Requête étendue
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/role/SearchBody.java

     */
    package org.codelibs.fess.app.web.api.admin.role;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for role administration API.
     */
    public class SearchBody extends BaseSearchBody {
    
        /**
         * Default constructor.
         */
        public SearchBody() {
            super();
        }
    
        /** Role ID */
        public String id;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 979 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/role/CreateBody.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.role;
    
    import org.codelibs.fess.app.web.admin.role.CreateForm;
    
    /**
     * Request body for creating role via REST API.
     * Extends CreateForm to inherit validation and field definitions.
     */
    public class CreateBody extends CreateForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 990 bytes
    - Viewed (0)
Back to top