1
2
3
4
5
6
7
8
9
10
11 package org.mule.util.timer;
12
13 import java.util.EventObject;
14
15
16
17
18
19 public class TimeEvent extends EventObject
20 {
21
22
23
24 private static final long serialVersionUID = -7540426406525372393L;
25
26
27
28
29 private String name;
30
31 private long timeExpired;
32
33 public TimeEvent(Object source, String name, long timeExpired)
34 {
35 super(source);
36 this.name = name;
37 this.timeExpired = timeExpired;
38 }
39
40 public String getName()
41 {
42 return name;
43 }
44
45 public long getTimeExpired()
46 {
47 return timeExpired;
48 }
49 }