Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ApiStorageResponse (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            @Override
            public ApiResult result() {
                return new ApiResult(this);
            }
        }
    
        public static class ApiStorageResponse extends ApiResponse {
            protected List<Map<String, Object>> items;
    
            public ApiStorageResponse items(final List<Map<String, Object>> items) {
                this.items = items;
                return this;
            }
    
            @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

            final List<Map<String, Object>> list = getFileItems(id.isPresent() ? decodePath(id.get()) : null);
            try {
                return asJson(new ApiResult.ApiStorageResponse().items(list).status(ApiResult.Status.OK).result());
            } catch (final ResultOffsetExceededException e) {
                if (logger.isDebugEnabled()) {
                    logger.debug(e.getMessage(), e);
                }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top