source: trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/web/data/WebEvent.java @ 51

Last change on this file since 51 was 51, checked in by sherbold, 13 years ago

+ added first classes for web usage analysis (experimental!!)

  • Property svn:mime-type set to text/plain
File size: 335 bytes
Line 
1package de.ugoe.cs.eventbench.web.data;
2
3import de.ugoe.cs.eventbench.data.Event;
4
5public 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.