KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > test > server > appserver > load > Request


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.test.server.appserver.load;
5
6 import org.apache.commons.httpclient.HttpClient;
7
8 import java.net.URL JavaDoc;
9
10 public interface Request {
11
12   public void setEnterQueueTime();
13
14   public void setExitQueueTime();
15
16   public void setProcessCompletionTime();
17
18   public URL JavaDoc 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 JavaDoc printData();
31 }
32
Popular Tags