Last change
on this file since 67 was
53,
checked in by sherbold, 13 years ago
|
- experimental parsing of web usage logs
|
-
Property svn:mime-type set to
text/plain
|
File size:
615 bytes
|
Line | |
---|
1 | package de.ugoe.cs.eventbench.web.data;
|
---|
2 |
|
---|
3 | import java.util.ArrayList;
|
---|
4 | import java.util.List;
|
---|
5 |
|
---|
6 | import de.ugoe.cs.eventbench.data.IReplayable;
|
---|
7 |
|
---|
8 | public class WebRequest implements IReplayable {
|
---|
9 |
|
---|
10 | List<String> postVars;
|
---|
11 |
|
---|
12 | String targetUri;
|
---|
13 |
|
---|
14 | public WebRequest(String uri, List<String> postVars) {
|
---|
15 | targetUri = uri;
|
---|
16 | this.postVars = new ArrayList<String>(postVars); // defensive copy
|
---|
17 | }
|
---|
18 |
|
---|
19 | @Override
|
---|
20 | public String getReplayXml() {
|
---|
21 | // TODO Auto-generated method stub
|
---|
22 | return null;
|
---|
23 | }
|
---|
24 |
|
---|
25 | @Override
|
---|
26 | public String getTarget() {
|
---|
27 | // TODO Auto-generated method stub
|
---|
28 | return null;
|
---|
29 | }
|
---|
30 |
|
---|
31 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.