Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for system (0.13 sec)

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

        protected ApiResponse response = null;
    
        public ApiResult(final ApiResponse response) {
            this.response = response;
        }
    
        public enum Status {
            OK(0), BAD_REQUEST(1), SYSTEM_ERROR(2), UNAUTHORIZED(3);
    
            private final int id;
    
            Status(final int id) {
                this.id = id;
            }
    
            public int getId() {
                return id;
            }
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
Back to top