Last change
on this file since 105 was
90,
checked in by sherbold, 13 years ago
|
- renamed getReplayXML to getReplay in de.ugoe.cs.eventbench.data.IReplayable and implementing classes
- minor changes
|
-
Property svn:mime-type set to
text/plain
|
File size:
691 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 | /**
|
---|
11 | * Id for object serialization.
|
---|
12 | */
|
---|
13 | private static final long serialVersionUID = 1L;
|
---|
14 |
|
---|
15 | List<String> postVars;
|
---|
16 |
|
---|
17 | String targetUri;
|
---|
18 |
|
---|
19 | public WebRequest(String uri, List<String> postVars) {
|
---|
20 | targetUri = uri;
|
---|
21 | this.postVars = new ArrayList<String>(postVars); // defensive copy
|
---|
22 | }
|
---|
23 |
|
---|
24 | @Override
|
---|
25 | public String getReplay() {
|
---|
26 | // TODO implement method
|
---|
27 | return null;
|
---|
28 | }
|
---|
29 |
|
---|
30 | @Override
|
---|
31 | public String getTarget() {
|
---|
32 | // TODO implement method
|
---|
33 | return null;
|
---|
34 | }
|
---|
35 |
|
---|
36 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.