Ignore:
Timestamp:
09/30/11 17:36:08 (13 years ago)
Author:
sherbold
Message:

+ implemented replay generation for de.ugoe.cs.eventbench.web.data.WebRequest?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/web/data/WebEvent.java

    r171 r225  
    5959         * </p> 
    6060         *  
     61         * @param url 
     62         *            URL of the server that received the event 
    6163         * @param path 
    6264         *            path of the URI 
     
    6870         *            GET variables send with the event 
    6971         */ 
    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) { 
    7274                super(makeType(path, postVars, getVars)); 
    7375                this.timestamp = timestamp; 
    74                 addReplayEvent(new WebRequest(path, postVars, getVars)); 
     76                addReplayEvent(new WebRequest(url, path, postVars, getVars)); 
    7577        } 
    7678 
Note: See TracChangeset for help on using the changeset viewer.