Split out sal-akka-raft example
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / example / messages / SetNotifiers.java
diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/example/messages/SetNotifiers.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/example/messages/SetNotifiers.java
deleted file mode 100644 (file)
index 8adc0da..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-package org.opendaylight.controller.cluster.example.messages;
-
-import java.util.List;
-
-/**
- * Created by kramesha on 11/18/14.
- */
-public class SetNotifiers {
-    private List<String> notifierList;
-
-    public SetNotifiers(List<String> notifierList) {
-        this.notifierList = notifierList;
-    }
-
-    public List<String> getNotifierList() {
-        return notifierList;
-    }
-}