event listener is now used by the xml router and the publish method of the gateway is
[xmlrouter] / listener / src / main / java / org / wamblee / xmlrouter / listener / EventInfo.java
1 /*
2  * Copyright 2005-2011 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.xmlrouter.listener;
17
18 import java.util.List;
19
20 import javax.xml.transform.dom.DOMSource;
21
22 import org.wamblee.xml.XMLDocument;
23 import org.wamblee.xmlrouter.common.Id;
24
25 /**
26  * Combines information about the event.
27  * 
28  * @author Erik Brakkee
29  * 
30  */
31 public class EventInfo {
32
33     private long time;
34     private String source;
35     private Id<DOMSource> id;
36     private List<String> types;
37     private DOMSource event;
38
39     public EventInfo(long aTime, String aSource, Id<DOMSource> aId,
40         List<String> aTypes, DOMSource aEvent) {
41         time = aTime;
42         source = aSource;
43         id = aId;
44         types = aTypes;
45         event = aEvent;
46     }
47
48     public long getTime() {
49         return time;
50     }
51
52     public String getSource() {
53         return source;
54     }
55
56     public Id<DOMSource> getId() {
57         return id;
58     }
59
60     public List<String> getTypes() {
61         return types;
62     }
63
64     public DOMSource getEvent() {
65         return event;
66     }
67
68     @Override
69     public String toString() {
70         StringBuffer buf = new StringBuffer();
71         buf.append("Event(");
72         buf.append("time " + time);
73         buf.append(", source " + source);
74         buf.append(", id " + id);
75         buf.append(", types " + types);
76         buf.append(", event " + new XMLDocument(event).print(true));
77         buf.append(")");
78         return buf.toString();
79     }
80 }