Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getClusterStatus (0.21 sec)

  1. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

                            }
                            postcard.setHostname(systemHelper.getHostname());
                            postcard.setClustername(ping.getClusterName());
                            postcard.setClusterstatus(ping.getClusterStatus());
                        });
                    } catch (final Exception e) {
                        logger.warn("Failed to send a test mail.", e);
                    } finally {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/PingResponse.java

            }
        }
    
        public int getStatus() {
            return status;
        }
    
        public String getClusterName() {
            return clusterName;
        }
    
        public String getClusterStatus() {
            return clusterStatus;
        }
    
        public String getMessage() {
            return message;
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
Back to top