Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for fileConfigId (0.2 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java

            this.createdTime = value;
        }
    
        public String getFileConfigId() {
            checkSpecifiedProperty("fileConfigId");
            return convertEmptyToNull(fileConfigId);
        }
    
        public void setFileConfigId(String value) {
            registerModifiedProperty("fileConfigId");
            this.fileConfigId = value;
        }
    
        public String getHostname() {
            checkSpecifiedProperty("hostname");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileAuthenticationCQ.java

        public void setFileConfigId_Equal(String fileConfigId) {
            setFileConfigId_Term(fileConfigId, null);
        }
    
        public void setFileConfigId_Equal(String fileConfigId, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setFileConfigId_Term(fileConfigId, opLambda);
        }
    
        public void setFileConfigId_Term(String fileConfigId) {
            setFileConfigId_Term(fileConfigId, null);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 88.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java

        @Execute
        public JsonResponse<ApiResult> put$setting(final CreateBody body) {
            validateApi(body, messages -> {});
            if (!isValidFileConfigId(body.fileConfigId)) {
                return asJson(new ApiErrorResponse().message("invalid fileConfigId").status(Status.BAD_REQUEST).result());
            }
    
            body.crudMode = CrudMode.CREATE;
            final FileAuthentication fileAuth = getFileAuthentication(body).map(entity -> {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String port;
    
        public String username;
    
        public String fileConfigId;
    
        public String createdBy;
    
        public String createdTime;
    
        public String versionNo;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

            cb.query().addOrderBy_Hostname_Asc();
    
            // search
    
        }
    
        public List<FileAuthentication> getFileAuthenticationList(final String fileConfigId) {
            return fileAuthenticationBhv.selectList(cb -> {
                cb.query().setFileConfigId_Equal(fileConfigId);
                cb.fetchFirst(fessConfig.getPageFileAuthMaxFetchSizeAsInteger());
            });
        }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileAuthenticationDbm.java

                false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnFileConfigId = cci("fileConfigId", "fileConfigId", null, null, String.class, "fileConfigId", null,
                false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/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);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 71.2K bytes
    - Viewed (0)
  8. 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) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/FileAuthentication.java

        }
    
        @Override
        public String toString() {
            return "FileAuthentication [fileConfig=" + fileConfig + ", createdBy=" + createdBy + ", createdTime=" + createdTime
                    + ", fileConfigId=" + fileConfigId + ", hostname=" + hostname + ", parameters=" + parameters + ", port=" + port
                    + ", protocolScheme=" + protocolScheme + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", username="
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth_details.jsp

                                            <td><c:forEach var="item" items="${fileConfigItems}">
                                                <c:if test="${fileConfigId==item.value}">${f:h(item.label)}</c:if>
                                            </c:forEach> <la:hidden property="fileConfigId"/></td>
                                        </tr>
                                        </tbody>
                                    </table>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 6.2K bytes
    - Viewed (0)
Back to top