1 23 24 28 29 35 36 package com.sun.enterprise.web.monitor; 37 38 import java.io.Serializable ; 39 40 43 public interface PwcServletStats extends Serializable { 44 45 50 public int getRequestCount(); 51 52 57 public long getProcessingTimeMillis(); 58 59 64 public long getMinTimeMillis(); 65 66 71 public long getMaxTimeMillis(); 72 73 79 public int getErrorCount(); 80 81 } 82 | Popular Tags |