1 package org.littleshoot.proxy;
2
3 import javax.management.MXBean;
4
5 @MXBean(true)
6 public interface ConnectionData {
7
8 int getClientConnections();
9
10 int getTotalClientConnections();
11
12 int getOutgoingConnections();
13
14 int getRequestsSent();
15
16 int getResponsesReceived();
17
18 String getUnansweredRequests();
19
20 String getAnsweredReqeusts();
21
22 String getRequests();
23
24 }