introduction of EventInfo.
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / XMLRouter.java
index 85a51df010f8180452b03aabc799ffd89375029d..e166d75d74880926b86459ab60971862dec0d0e8 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ * Copyright 2005-2011 the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.wamblee.xmlrouter.impl;
 
 import java.util.ArrayList;
@@ -20,6 +35,7 @@ import org.wamblee.xmlrouter.config.Config;
 import org.wamblee.xmlrouter.config.DocumentType;
 import org.wamblee.xmlrouter.config.Filter;
 import org.wamblee.xmlrouter.config.Transformation;
+import org.wamblee.xmlrouter.listener.EventListener;
 import org.wamblee.xmlrouter.publish.Gateway;
 import org.wamblee.xmlrouter.subscribe.Destination;
 import org.wamblee.xmlrouter.subscribe.DestinationRegistry;
@@ -31,13 +47,15 @@ public class XMLRouter implements Config, Gateway, DestinationRegistry {
     private static final Logger LOGGER = Logger.getLogger(XMLRouter.class
         .getName());
 
+    private EventListener listener;
     private AtomicInteger sequenceNumbers;
     private Map<Integer, DocumentType> documentTypes;
     private Transformations transformations;
     private Map<Integer, Filter> filters;
     private Map<Integer, Destination> destinations;
 
-    public XMLRouter() {
+    public XMLRouter(EventListener aListener) {
+        listener = aListener;
         sequenceNumbers = new AtomicInteger(1);
         documentTypes = new LinkedHashMap<Integer, DocumentType>();
         transformations = new Transformations();