Move adsal into its own subdirectory.
[controller.git] / opendaylight / clustering / test / src / main / java / org / opendaylight / controller / clustering / test / internal / LoggingListener.java
diff --git a/opendaylight/clustering/test/src/main/java/org/opendaylight/controller/clustering/test/internal/LoggingListener.java b/opendaylight/clustering/test/src/main/java/org/opendaylight/controller/clustering/test/internal/LoggingListener.java
deleted file mode 100644 (file)
index 1aef9ce..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.controller.clustering.test.internal;
-
-import org.opendaylight.controller.clustering.services.IGetUpdates;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class LoggingListener implements IGetUpdates<Integer, StringContainer> {
-    protected static Logger logger = LoggerFactory
-            .getLogger(LoggingListener.class);
-
-    @Override
-    public void entryCreated(Integer key, String containerName,
-            String cacheName, boolean originLocal) {
-        logger.debug(" Cache entry with key " + key + " created in cache "
-                + cacheName);
-    }
-
-    @Override
-    public void entryUpdated(Integer key, StringContainer newValue,
-            String containerName, String cacheName, boolean originLocal) {
-        logger.debug(" Cache entry with key " + key + " modified to value "
-                + newValue + "  in cache " + cacheName);
-    }
-
-    @Override
-    public void entryDeleted(Integer key, String containerName,
-            String cacheName, boolean originLocal) {
-        logger.debug(" Cache entry with key " + key + " removed in cache "
-                + cacheName);
-    }
-}