Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for storageEndpoints (0.15 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setNotificationLogin(form.notificationLogin);
            fessConfig.setNotificationSearchTop(form.notificationSearchTop);
            fessConfig.setStorageEndpoint(form.storageEndpoint);
            if (form.storageAccessKey != null && StringUtil.isNotBlank(form.storageAccessKey.replace("*", " "))) {
                fessConfig.setStorageAccessKey(form.storageAccessKey);
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String notificationLogin;
    
        @Size(max = 3000)
        public String notificationSearchTop;
    
        @Size(max = 10)
        public String logLevel;
    
        @Size(max = 1000)
        public String storageEndpoint;
    
        @Size(max = 1000)
        public String storageAccessKey;
    
        @Size(max = 1000)
        public String storageSecretKey;
    
        @Size(max = 1000)
        public String storageBucket;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <label for="storageEndpoint"
                                               class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.storage_endpoint"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="storageEndpoint"/>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jan 16 12:54:35 GMT 2023
    - 39.4K bytes
    - Viewed (0)
Back to top