1 23 package com.sun.enterprise.admin.wsmgmt.stats.spi; 24 25 26 31 public interface WebServiceEndpointStatsProvider 32 { 33 public long getAverageResponseTime(); 34 35 public long getMinResponseTime(); 36 37 public long getMaxResponseTime(); 38 39 public long getResponseTime(); 40 41 public int getTotalFailures(); 42 43 public int getTotalSuccesses(); 44 45 public int getTotalAuthFailures(); 46 47 public int getTotalAuthSuccesses(); 48 49 public double getThroughput(); 50 51 public int getRequestSize(); 52 53 public int getResponseSize(); 54 55 public String getClientHost(); 56 57 public String getClientUser(); 58 59 public String getFaultCode(); 60 61 public String getFaultString(); 62 63 public String getFaultActor(); 64 65 public void reset(); 66 67 public long getLastResetTime(); 68 } 69 | Popular Tags |