Bug 5679 - implement ietf-restconf-monitoring - cleanup
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / netconf / sal / streams / listeners / ListenerAdapter.java
index ccc30a5616c82b7c082b17048afdc8c493557ec3..0b2c1dd34d8811b2f6e79ba1b2754d29ff32ecd5 100644 (file)
@@ -8,51 +8,18 @@
 package org.opendaylight.netconf.sal.streams.listeners;
 
 import com.google.common.base.Preconditions;
-import com.google.common.eventbus.AsyncEventBus;
-import com.google.common.eventbus.EventBus;
-import com.google.common.eventbus.Subscribe;
-import io.netty.channel.Channel;
-import io.netty.handler.codec.http.websocketx.TextWebSocketFrame;
-import io.netty.util.internal.ConcurrentSet;
-import java.io.ByteArrayOutputStream;
 import java.io.IOException;
-import java.io.OutputStreamWriter;
-import java.io.StringReader;
-import java.io.UnsupportedEncodingException;
-import java.nio.charset.StandardCharsets;
-import java.text.SimpleDateFormat;
-import java.util.Collection;
-import java.util.Date;
 import java.util.Map;
 import java.util.Map.Entry;
-import java.util.Random;
 import java.util.Set;
-import java.util.concurrent.Executors;
-import java.util.regex.Pattern;
-import javax.xml.parsers.DocumentBuilder;
-import javax.xml.parsers.DocumentBuilderFactory;
-import javax.xml.parsers.ParserConfigurationException;
-import javax.xml.stream.XMLOutputFactory;
 import javax.xml.stream.XMLStreamException;
-import javax.xml.stream.XMLStreamWriter;
-import javax.xml.transform.OutputKeys;
-import javax.xml.transform.Transformer;
-import javax.xml.transform.TransformerException;
-import javax.xml.transform.TransformerFactory;
 import javax.xml.transform.dom.DOMResult;
-import javax.xml.transform.dom.DOMSource;
-import javax.xml.transform.stream.StreamResult;
-import javax.xml.xpath.XPath;
-import javax.xml.xpath.XPathConstants;
-import javax.xml.xpath.XPathFactory;
 import org.json.JSONObject;
 import org.json.XML;
 import org.opendaylight.controller.md.sal.common.api.data.AsyncDataChangeEvent;
 import org.opendaylight.controller.md.sal.dom.api.DOMDataChangeListener;
 import org.opendaylight.netconf.sal.restconf.impl.ControllerContext;
-import org.opendaylight.netconf.sal.restconf.impl.RestconfDocumentedException;
 import org.opendaylight.yang.gen.v1.urn.sal.restconf.event.subscription.rev140708.NotificationOutputTypeGrouping.NotificationOutputType;
-import org.opendaylight.yangtools.concepts.ListenerRegistration;
 import org.opendaylight.yangtools.yang.common.QName;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
@@ -61,10 +28,6 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgum
 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
 import org.opendaylight.yangtools.yang.data.api.schema.UnkeyedListEntryNode;
-import org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamWriter;
-import org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeWriter;
-import org.opendaylight.yangtools.yang.data.impl.codec.xml.XMLStreamNormalizedNodeStreamWriter;
-import org.opendaylight.yangtools.yang.data.impl.codec.xml.XmlDocumentUtils;
 import org.opendaylight.yangtools.yang.data.util.DataSchemaContextTree;
 import org.opendaylight.yangtools.yang.model.api.Module;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
@@ -74,34 +37,24 @@ import org.slf4j.LoggerFactory;
 import org.w3c.dom.Document;
 import org.w3c.dom.Element;
 import org.w3c.dom.Node;
-import org.xml.sax.InputSource;
 
 /**
- * {@link ListenerAdapter} is responsible to track events, which occurred by changing data in data source.
+ * {@link ListenerAdapter} is responsible to track events, which occurred by
+ * changing data in data source.
  */
-public class ListenerAdapter implements DOMDataChangeListener {
+public class ListenerAdapter extends AbstractCommonSubscriber implements DOMDataChangeListener {
 
     private static final Logger LOG = LoggerFactory.getLogger(ListenerAdapter.class);
-    private static final DocumentBuilderFactory DBF = DocumentBuilderFactory.newInstance();
-    private static final TransformerFactory FACTORY = TransformerFactory.newInstance();
-    private static final Pattern RFC3339_PATTERN = Pattern.compile("(\\d\\d)(\\d\\d)$");
-
-    private static final SimpleDateFormat RFC3339 = new SimpleDateFormat("yyyy-MM-dd'T'hh:mm:ssZ");
 
     private final YangInstanceIdentifier path;
-    private ListenerRegistration<DOMDataChangeListener> registration;
     private final String streamName;
-    private Set<Channel> subscribers = new ConcurrentSet<>();
-    private final EventBus eventBus;
-    private final EventBusChangeRecorder eventBusChangeRecorder;
     private final NotificationOutputType outputType;
-    private Date start = null;
-    private Date stop = null;
-    private String filter = null;
+
+    private AsyncDataChangeEvent<YangInstanceIdentifier, NormalizedNode<?, ?>> change;
 
     /**
      * Creates new {@link ListenerAdapter} listener specified by path and stream
-     * name.
+     * name and register for subscribing
      *
      * @param path
      *            Path to data in data store.
@@ -112,76 +65,47 @@ public class ListenerAdapter implements DOMDataChangeListener {
      */
     ListenerAdapter(final YangInstanceIdentifier path, final String streamName,
             final NotificationOutputType outputType) {
-        this.outputType = outputType;
-        Preconditions.checkNotNull(path);
+        super();
+        register(this);
+        setLocalNameOfPath(path.getLastPathArgument().getNodeType().getLocalName());
+
+        this.outputType = Preconditions.checkNotNull(outputType);
+        this.path = Preconditions.checkNotNull(path);
         Preconditions.checkArgument((streamName != null) && !streamName.isEmpty());
-        this.path = path;
         this.streamName = streamName;
-        this.eventBus = new AsyncEventBus(Executors.newSingleThreadExecutor());
-        this.eventBusChangeRecorder = new EventBusChangeRecorder();
-        this.eventBus.register(this.eventBusChangeRecorder);
     }
 
     @Override
     public void onDataChanged(final AsyncDataChangeEvent<YangInstanceIdentifier, NormalizedNode<?, ?>> change) {
-        final Date now = new Date();
-        if (this.stop != null) {
-            if ((this.start.compareTo(now) < 0) && (this.stop.compareTo(now) > 0)) {
-                checkFilter(change);
-            }
-            if (this.stop.compareTo(now) < 0) {
-                try {
-                    this.close();
-                } catch (final Exception e) {
-                    throw new RestconfDocumentedException("Problem with unregister listener." + e);
-                }
-            }
-        } else if (this.start != null) {
-            if (this.start.compareTo(now) < 0) {
-                this.start = null;
-                checkFilter(change);
-            }
-        } else {
-            checkFilter(change);
+        this.change = change;
+        final String xml = prepareXml();
+        if (checkQueryParams(xml, this)) {
+            prepareAndPostData(xml);
         }
     }
 
     /**
-     * Check if is filter used and then prepare and post data do client
+     * Gets the name of the stream.
      *
-     * @param change
-     *            - data of notification
+     * @return The name of the stream.
      */
-    private void checkFilter(final AsyncDataChangeEvent<YangInstanceIdentifier, NormalizedNode<?, ?>> change) {
-        final String xml = prepareXmlFrom(change);
-        if (this.filter == null) {
-            prepareAndPostData(xml);
-        } else {
-            try {
-                if (parseFilterParam(xml)) {
-                    prepareAndPostData(xml);
-                }
-            } catch (final Exception e) {
-                throw new RestconfDocumentedException("Problem while parsing filter.", e);
-            }
-        }
+    @Override
+    public String getStreamName() {
+        return this.streamName;
+    }
+
+    @Override
+    public String getOutputType() {
+        return this.outputType.getName();
     }
 
     /**
-     * Parse and evaluate filter value by xml
+     * Get path pointed to data in data store.
      *
-     * @param xml
-     *            - notification data in xml
-     * @return true or false - depends on filter expression and data of
-     *         notifiaction
-     * @throws Exception
+     * @return Path pointed to data in data store.
      */
-    private boolean parseFilterParam(final String xml) throws Exception {
-        final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
-        final DocumentBuilder builder = factory.newDocumentBuilder();
-        final Document docOfXml = builder.parse(new InputSource(new StringReader(xml)));
-        final XPath xPath = XPathFactory.newInstance().newXPath();
-        return (boolean) xPath.compile(this.filter).evaluate(docOfXml, XPathConstants.BOOLEAN);
+    public YangInstanceIdentifier getPath() {
+        return this.path;
     }
 
     /**
@@ -190,117 +114,19 @@ public class ListenerAdapter implements DOMDataChangeListener {
      * @param xml
      */
     private void prepareAndPostData(final String xml) {
-            final Event event = new Event(EventType.NOTIFY);
-            if (this.outputType.equals(NotificationOutputType.JSON)) {
-                final JSONObject jsonObject = XML.toJSONObject(xml);
-                event.setData(jsonObject.toString());
-            } else {
-                event.setData(xml);
-            }
-            this.eventBus.post(event);
-    }
-
-    /**
-     * Tracks events of data change by customer.
-     */
-    private final class EventBusChangeRecorder {
-        @Subscribe
-        public void recordCustomerChange(final Event event) {
-            if (event.getType() == EventType.REGISTER) {
-                final Channel subscriber = event.getSubscriber();
-                if (!ListenerAdapter.this.subscribers.contains(subscriber)) {
-                    ListenerAdapter.this.subscribers.add(subscriber);
-                }
-            } else if (event.getType() == EventType.DEREGISTER) {
-                ListenerAdapter.this.subscribers.remove(event.getSubscriber());
-                Notificator.removeListenerIfNoSubscriberExists(ListenerAdapter.this);
-            } else if (event.getType() == EventType.NOTIFY) {
-                for (final Channel subscriber : ListenerAdapter.this.subscribers) {
-                    if (subscriber.isActive()) {
-                        LOG.debug("Data are sent to subscriber {}:", subscriber.remoteAddress());
-                        subscriber.writeAndFlush(new TextWebSocketFrame(event.getData()));
-                    } else {
-                        LOG.debug("Subscriber {} is removed - channel is not active yet.", subscriber.remoteAddress());
-                        ListenerAdapter.this.subscribers.remove(subscriber);
-                    }
-                }
-            }
-        }
-    }
-
-    /**
-     * Represents event of specific {@link EventType} type, holds data and {@link Channel} subscriber.
-     */
-    private final class Event {
-        private final EventType type;
-        private Channel subscriber;
-        private String data;
-
-        /**
-         * Creates new event specified by {@link EventType} type.
-         *
-         * @param type
-         *            EventType
-         */
-        public Event(final EventType type) {
-            this.type = type;
-        }
-
-        /**
-         * Gets the {@link Channel} subscriber.
-         *
-         * @return Channel
-         */
-        public Channel getSubscriber() {
-            return this.subscriber;
-        }
-
-        /**
-         * Sets subscriber for event.
-         *
-         * @param subscriber
-         *            Channel
-         */
-        public void setSubscriber(final Channel subscriber) {
-            this.subscriber = subscriber;
-        }
-
-        /**
-         * Gets event String.
-         *
-         * @return String representation of event data.
-         */
-        public String getData() {
-            return this.data;
-        }
-
-        /**
-         * Sets event data.
-         *
-         * @param data String.
-         */
-        public void setData(final String data) {
-            this.data = data;
-        }
-
-        /**
-         * Gets event type.
-         *
-         * @return The type of the event.
-         */
-        public EventType getType() {
-            return this.type;
+        final Event event = new Event(EventType.NOTIFY);
+        if (this.outputType.equals(NotificationOutputType.JSON)) {
+            final JSONObject jsonObject = XML.toJSONObject(xml);
+            event.setData(jsonObject.toString());
+        } else {
+            event.setData(xml);
         }
+        post(event);
     }
 
     /**
-     * Type of the event.
+     * Tracks events of data change by customer.
      */
-    private enum EventType {
-        REGISTER,
-        DEREGISTER,
-        NOTIFY;
-    }
 
     /**
      * Prepare data in printable form and transform it to String.
@@ -309,68 +135,19 @@ public class ListenerAdapter implements DOMDataChangeListener {
      *            DataChangeEvent
      * @return Data in printable form.
      */
-    private String prepareXmlFrom(final AsyncDataChangeEvent<YangInstanceIdentifier, NormalizedNode<?, ?>> change) {
+    private String prepareXml() {
         final SchemaContext schemaContext = ControllerContext.getInstance().getGlobalSchema();
-        final DataSchemaContextTree dataContextTree =  DataSchemaContextTree.from(schemaContext);
+        final DataSchemaContextTree dataContextTree = DataSchemaContextTree.from(schemaContext);
         final Document doc = createDocument();
-        final Element notificationElement = doc.createElementNS("urn:ietf:params:xml:ns:netconf:notification:1.0",
-                "notification");
-
-        doc.appendChild(notificationElement);
-
-        final Element eventTimeElement = doc.createElement("eventTime");
-        eventTimeElement.setTextContent(toRFC3339(new Date()));
-        notificationElement.appendChild(eventTimeElement);
+        final Element notificationElement = basePartDoc(doc);
 
         final Element dataChangedNotificationEventElement = doc.createElementNS(
                 "urn:opendaylight:params:xml:ns:yang:controller:md:sal:remote", "data-changed-notification");
 
-        addValuesToDataChangedNotificationEventElement(doc, dataChangedNotificationEventElement, change,
+        addValuesToDataChangedNotificationEventElement(doc, dataChangedNotificationEventElement, this.change,
                 schemaContext, dataContextTree);
         notificationElement.appendChild(dataChangedNotificationEventElement);
-
-        try {
-            final ByteArrayOutputStream out = new ByteArrayOutputStream();
-            final Transformer transformer = FACTORY.newTransformer();
-            transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "no");
-            transformer.setOutputProperty(OutputKeys.METHOD, "xml");
-            transformer.setOutputProperty(OutputKeys.INDENT, "yes");
-            transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
-            transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
-            transformer.transform(new DOMSource(doc),
-                    new StreamResult(new OutputStreamWriter(out, StandardCharsets.UTF_8)));
-            final byte[] charData = out.toByteArray();
-            return new String(charData, "UTF-8");
-        } catch (TransformerException | UnsupportedEncodingException e) {
-            final String msg = "Error during transformation of Document into String";
-            LOG.error(msg, e);
-            return msg;
-        }
-    }
-
-    /**
-     * Formats data specified by RFC3339.
-     *
-     * @param d
-     *            Date
-     * @return Data specified by RFC3339.
-     */
-    public static String toRFC3339(final Date d) {
-        return RFC3339_PATTERN.matcher(RFC3339.format(d)).replaceAll("$1:$2");
-    }
-
-    /**
-     * Creates {@link Document} document.
-     * @return {@link Document} document.
-     */
-    public static Document createDocument() {
-        final DocumentBuilder bob;
-        try {
-            bob = DBF.newDocumentBuilder();
-        } catch (final ParserConfigurationException e) {
-            return null;
-        }
-        return bob.newDocument();
+        return transformDoc(doc);
     }
 
     /**
@@ -386,15 +163,13 @@ public class ListenerAdapter implements DOMDataChangeListener {
     private void addValuesToDataChangedNotificationEventElement(final Document doc,
             final Element dataChangedNotificationEventElement,
             final AsyncDataChangeEvent<YangInstanceIdentifier, NormalizedNode<?, ?>> change,
-            final SchemaContext  schemaContext, final DataSchemaContextTree dataSchemaContextTree) {
+            final SchemaContext schemaContext, final DataSchemaContextTree dataSchemaContextTree) {
 
         addCreatedChangedValuesFromDataToElement(doc, change.getCreatedData().entrySet(),
-                dataChangedNotificationEventElement,
-                Operation.CREATED, schemaContext, dataSchemaContextTree);
+                dataChangedNotificationEventElement, Operation.CREATED, schemaContext, dataSchemaContextTree);
 
         addCreatedChangedValuesFromDataToElement(doc, change.getUpdatedData().entrySet(),
-                    dataChangedNotificationEventElement,
-                    Operation.UPDATED, schemaContext, dataSchemaContextTree);
+                dataChangedNotificationEventElement, Operation.UPDATED, schemaContext, dataSchemaContextTree);
 
         addValuesFromDataToElement(doc, change.getRemovedPaths(), dataChangedNotificationEventElement,
                 Operation.DELETED);
@@ -425,9 +200,10 @@ public class ListenerAdapter implements DOMDataChangeListener {
         }
     }
 
-    private void addCreatedChangedValuesFromDataToElement(final Document doc, final Set<Entry<YangInstanceIdentifier,
-                NormalizedNode<?,?>>> data, final Element element, final Operation operation, final SchemaContext
-            schemaContext, final DataSchemaContextTree dataSchemaContextTree) {
+    private void addCreatedChangedValuesFromDataToElement(final Document doc,
+            final Set<Entry<YangInstanceIdentifier, NormalizedNode<?, ?>>> data, final Element element,
+            final Operation operation, final SchemaContext schemaContext,
+            final DataSchemaContextTree dataSchemaContextTree) {
         if ((data == null) || data.isEmpty()) {
             return;
         }
@@ -465,9 +241,9 @@ public class ListenerAdapter implements DOMDataChangeListener {
         return dataChangeEventElement;
     }
 
-    private Node createCreatedChangedDataChangeEventElement(final Document doc, final Entry<YangInstanceIdentifier,
-            NormalizedNode<?, ?>> entry, final Operation operation, final SchemaContext
-            schemaContext, final DataSchemaContextTree dataSchemaContextTree) {
+    private Node createCreatedChangedDataChangeEventElement(final Document doc,
+            final Entry<YangInstanceIdentifier, NormalizedNode<?, ?>> entry, final Operation operation,
+            final SchemaContext schemaContext, final DataSchemaContextTree dataSchemaContextTree) {
         final Element dataChangeEventElement = doc.createElement("data-change-event");
         final Element pathElement = doc.createElement("path");
         final YangInstanceIdentifier path = entry.getKey();
@@ -479,8 +255,14 @@ public class ListenerAdapter implements DOMDataChangeListener {
         dataChangeEventElement.appendChild(operationElement);
 
         try {
-            final DOMResult domResult = writeNormalizedNode(entry.getValue(), path,
-                    schemaContext, dataSchemaContextTree);
+            SchemaPath nodePath;
+            final NormalizedNode<?, ?> normalized = entry.getValue();
+            if ((normalized instanceof MapEntryNode) || (normalized instanceof UnkeyedListEntryNode)) {
+                nodePath = dataSchemaContextTree.getChild(path).getDataSchemaNode().getPath();
+            } else {
+                nodePath = dataSchemaContextTree.getChild(path).getDataSchemaNode().getPath().getParent();
+            }
+            final DOMResult domResult = writeNormalizedNode(normalized, schemaContext, nodePath);
             final Node result = doc.importNode(domResult.getNode().getFirstChild(), true);
             final Element dataElement = doc.createElement("data");
             dataElement.appendChild(result);
@@ -494,47 +276,6 @@ public class ListenerAdapter implements DOMDataChangeListener {
         return dataChangeEventElement;
     }
 
-    private static DOMResult writeNormalizedNode(final NormalizedNode<?, ?> normalized,
-                                                 final YangInstanceIdentifier path, final SchemaContext context,
-                                                 final DataSchemaContextTree dataSchemaContextTree)
-            throws IOException, XMLStreamException {
-        final XMLOutputFactory XML_FACTORY = XMLOutputFactory.newFactory();
-        final Document doc = XmlDocumentUtils.getDocument();
-        final DOMResult result = new DOMResult(doc);
-        NormalizedNodeWriter normalizedNodeWriter = null;
-        NormalizedNodeStreamWriter normalizedNodeStreamWriter = null;
-        XMLStreamWriter writer = null;
-        final SchemaPath nodePath;
-
-        if ((normalized instanceof MapEntryNode) || (normalized instanceof UnkeyedListEntryNode)) {
-            nodePath = dataSchemaContextTree.getChild(path).getDataSchemaNode().getPath();
-        } else {
-            nodePath = dataSchemaContextTree.getChild(path).getDataSchemaNode().getPath().getParent();
-        }
-
-        try {
-            writer = XML_FACTORY.createXMLStreamWriter(result);
-            normalizedNodeStreamWriter = XMLStreamNormalizedNodeStreamWriter.create(writer, context, nodePath);
-            normalizedNodeWriter = NormalizedNodeWriter.forStreamWriter(normalizedNodeStreamWriter);
-
-            normalizedNodeWriter.write(normalized);
-
-            normalizedNodeWriter.flush();
-        } finally {
-            if (normalizedNodeWriter != null) {
-                normalizedNodeWriter.close();
-            }
-            if (normalizedNodeStreamWriter != null) {
-                normalizedNodeStreamWriter.close();
-            }
-            if (writer != null) {
-                writer.close();
-            }
-        }
-
-        return result;
-    }
-
     /**
      * Adds path as value to element.
      *
@@ -543,6 +284,7 @@ public class ListenerAdapter implements DOMDataChangeListener {
      * @param element
      *            {@link Element}
      */
+    @SuppressWarnings("rawtypes")
     private void addPathAsValueToElement(final YangInstanceIdentifier path, final Element element) {
         final YangInstanceIdentifier normalizedPath = ControllerContext.getInstance().toXpathRepresentation(path);
         final StringBuilder textContent = new StringBuilder();
@@ -595,131 +337,11 @@ public class ListenerAdapter implements DOMDataChangeListener {
     }
 
     /**
-     * Generates new prefix which consists of four random characters <a-z>.
-     *
-     * @param prefixes
-     *            Collection of prefixes.
-     * @return New prefix which consists of four random characters <a-z>.
-     */
-    private static String generateNewPrefix(final Collection<String> prefixes) {
-        StringBuilder result = null;
-        final Random random = new Random();
-        do {
-            result = new StringBuilder();
-            for (int i = 0; i < 4; i++) {
-                final int randomNumber = 0x61 + (Math.abs(random.nextInt()) % 26);
-                result.append(Character.toChars(randomNumber));
-            }
-        } while (prefixes.contains(result.toString()));
-
-        return result.toString();
-    }
-
-    /**
-     * Gets path pointed to data in data store.
-     *
-     * @return Path pointed to data in data store.
-     */
-    public YangInstanceIdentifier getPath() {
-        return this.path;
-    }
-
-    /**
-     * Sets {@link ListenerRegistration} registration.
-     *
-     * @param registration DOMDataChangeListener registration
-     */
-    public void setRegistration(final ListenerRegistration<DOMDataChangeListener> registration) {
-        this.registration = registration;
-    }
-
-    /**
-     * Gets the name of the stream.
-     *
-     * @return The name of the stream.
-     */
-    public String getStreamName() {
-        return this.streamName;
-    }
-
-    /**
-     * Removes all subscribers and unregisters event bus change recorder form event bus.
-     */
-    public void close() throws Exception {
-        this.subscribers = new ConcurrentSet<>();
-        this.registration.close();
-        this.registration = null;
-        this.eventBus.unregister(this.eventBusChangeRecorder);
-    }
-
-    /**
-     * Checks if {@link ListenerRegistration} registration exist.
-     *
-     * @return True if exist, false otherwise.
-     */
-    public boolean isListening() {
-        return this.registration == null ? false : true;
-    }
-
-    /**
-     * Creates event of type {@link EventType#REGISTER}, set {@link Channel} subscriber to the event and post event into
-     * event bus.
-     *
-     * @param subscriber
-     *            Channel
-     */
-    public void addSubscriber(final Channel subscriber) {
-        if (!subscriber.isActive()) {
-            LOG.debug("Channel is not active between websocket server and subscriber {}" + subscriber.remoteAddress());
-        }
-        final Event event = new Event(EventType.REGISTER);
-        event.setSubscriber(subscriber);
-        this.eventBus.post(event);
-    }
-
-    /**
-     * Creates event of type {@link EventType#DEREGISTER}, sets {@link Channel} subscriber to the event and posts event
-     * into event bus.
-     *
-     * @param subscriber
-     */
-    public void removeSubscriber(final Channel subscriber) {
-        LOG.debug("Subscriber {} is removed.", subscriber.remoteAddress());
-        final Event event = new Event(EventType.DEREGISTER);
-        event.setSubscriber(subscriber);
-        this.eventBus.post(event);
-    }
-
-    /**
-     * Checks if exists at least one {@link Channel} subscriber.
-     *
-     * @return True if exist at least one {@link Channel} subscriber, false otherwise.
-     */
-    public boolean hasSubscribers() {
-        return !this.subscribers.isEmpty();
-    }
-
-    /**
-     * Consists of two types {@link Store#CONFIG} and {@link Store#OPERATION}.
-     */
-    private static enum Store {
-        CONFIG("config"),
-        OPERATION("operation");
-
-        private final String value;
-
-        private Store(final String value) {
-            this.value = value;
-        }
-    }
-
-    /**
-     * Consists of three types {@link Operation#CREATED}, {@link Operation#UPDATED} and {@link Operation#DELETED}.
+     * Consists of three types {@link Operation#CREATED},
+     * {@link Operation#UPDATED} and {@link Operation#DELETED}.
      */
     private static enum Operation {
-        CREATED("created"),
-        UPDATED("updated"),
-        DELETED("deleted");
+        CREATED("created"), UPDATED("updated"), DELETED("deleted");
 
         private final String value;
 
@@ -727,21 +349,4 @@ public class ListenerAdapter implements DOMDataChangeListener {
             this.value = value;
         }
     }
-
-    /**
-     * Set query parameters for listener
-     *
-     * @param start
-     *            - start-time of getting notification
-     * @param stop
-     *            - stop-time of getting notification
-     * @param filter
-     *            - indicate which subset of all possible events are of interest
-     */
-    public void setQueryParams(final Date start, final Date stop, final String filter) {
-        this.start = start;
-        this.stop = stop;
-        this.filter = filter;
-    }
-
 }