Last change
on this file since 52 was
51,
checked in by sherbold, 14 years ago
|
+ added first classes for web usage analysis (experimental!!)
|
-
Property svn:mime-type set to
text/plain
|
File size:
335 bytes
|
Line | |
---|
1 | package de.ugoe.cs.eventbench.web.data;
|
---|
2 |
|
---|
3 | import de.ugoe.cs.eventbench.data.Event;
|
---|
4 |
|
---|
5 | public class WebEvent extends Event<String> {
|
---|
6 |
|
---|
7 | private final long timestamp;
|
---|
8 |
|
---|
9 | public WebEvent(String type, long timestamp) {
|
---|
10 | super(type);
|
---|
11 | this.timestamp = timestamp;
|
---|
12 | }
|
---|
13 |
|
---|
14 | public long getTimestamp() {
|
---|
15 | return timestamp;
|
---|
16 | }
|
---|
17 |
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.