- Timestamp:
- 09/30/11 17:36:08 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/web/data/WebEvent.java
r171 r225 59 59 * </p> 60 60 * 61 * @param url 62 * URL of the server that received the event 61 63 * @param path 62 64 * path of the URI … … 68 70 * GET variables send with the event 69 71 */ 70 public WebEvent(String path, long timestamp, List<String> postVars,71 List<String> getVars) {72 public WebEvent(String url, String path, long timestamp, 73 List<String> postVars, List<String> getVars) { 72 74 super(makeType(path, postVars, getVars)); 73 75 this.timestamp = timestamp; 74 addReplayEvent(new WebRequest( path, postVars, getVars));76 addReplayEvent(new WebRequest(url, path, postVars, getVars)); 75 77 } 76 78
Note: See TracChangeset
for help on using the changeset viewer.