Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for fileConfigId (0.06 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsFileAuthenticationCA.java

            setFileConfigId_Terms("fileConfigId", opLambda, null);
        }
    
        public void setFileConfigId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda,
                OperatorCall<BsFileAuthenticationCA> aggsLambda) {
            setFileConfigId_Terms("fileConfigId", opLambda, aggsLambda);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 71.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

         *
         * @param fileConfigId the ID of the file configuration to retrieve authentications for
         * @return a list of file authentication configurations for the specified file configuration
         */
        public List<FileAuthentication> getFileAuthenticationList(final String fileConfigId) {
            return fileAuthenticationBhv.selectList(cb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsFileAuthenticationCB.java

                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnFileConfigId() {
                doColumn("fileConfigId");
            }
    
            public void columnHostname() {
                doColumn("hostname");
            }
    
            public void columnParameters() {
                doColumn("parameters");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java

        @Size(max = 1000)
        public String parameters;
    
        /** The ID of the associated file configuration (required, maximum 1000 characters). */
        @Required
        @Size(max = 1000)
        public String fileConfigId;
    
        /** The user who created this file authentication configuration (maximum 1000 characters). */
        @Size(max = 1000)
        public String createdBy;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/FileAuthTests.java

        void deleteFileConfig() {
            final Map<String, Object> searchBody = new HashMap<>();
            searchBody.put("size", NUM * 2);
            final String fileConfigId = getFileConfigId();
            checkMethodBase(searchBody).delete("/api/admin/fileconfig/setting/" + fileConfigId).then().body("response.status", equalTo(0));
        }
    
        @Override
        protected Map<String, Object> createTestParam(int id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

        }
    
        protected static String buildFileConfigJobScript(final String fileConfigId) {
            return String.format("return container.getComponent(\"crawlJob\")" + ".logLevel(\"info\")" + ".sessionId(\"%s\")"
                    + ".fileConfigIds([\"%s\"] as String[])" + ".jobExecutor(executor).execute();", fileConfigId, fileConfigId);
        }
    
        protected static Map<String, Object> getSchedulerItem(final String namePrefix) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

        public String port;
    
        /** The username for file authentication. */
        public String username;
    
        /** The file configuration ID associated with this authentication. */
        public String fileConfigId;
    
        /** The user who created this file authentication entry. */
        public String createdBy;
    
        /** The timestamp when this file authentication entry was created. */
        public String createdTime;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

         */
        public void delete(final FileConfig fileConfig) {
    
            final String fileConfigId = fileConfig.getId();
    
            fileConfigBhv.delete(fileConfig, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
            fileAuthenticationBhv.queryDelete(cb -> {
                cb.query().setFileConfigId_Equal(fileConfigId);
            });
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileAuthenticationBhv.java

                result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy")));
                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setFileConfigId(DfTypeUtil.toString(source.get("fileConfigId")));
                result.setHostname(DfTypeUtil.toString(source.get("hostname")));
                result.setParameters(DfTypeUtil.toString(source.get("parameters")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top