01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.test.server.appserver.load;
05:
06: import org.apache.commons.httpclient.HttpClient;
07:
08: import java.net.URL;
09:
10: public interface Request {
11:
12: public void setEnterQueueTime();
13:
14: public void setExitQueueTime();
15:
16: public void setProcessCompletionTime();
17:
18: public URL getUrl();
19:
20: public long getEnterQueueTime();
21:
22: public long getExitQueueTime();
23:
24: public long getProcessCompletionTime();
25:
26: public HttpClient getClient();
27:
28: public int getAppserverID();
29:
30: public String printData();
31: }
|