X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fexample%2Fmessages%2FSetNotifiers.java;fp=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fexample%2Fmessages%2FSetNotifiers.java;h=8adc0dac13fd583985264b64f723dd3ad29ce74b;hb=a469dbcec569cc972df0cd57cf725a2173d2604a;hp=0000000000000000000000000000000000000000;hpb=d70f418d19fa09b1efc8fa4ce4ed35f0cf59b73b;p=controller.git 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 new file mode 100644 index 0000000000..8adc0dac13 --- /dev/null +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/example/messages/SetNotifiers.java @@ -0,0 +1,18 @@ +package org.opendaylight.controller.cluster.example.messages; + +import java.util.List; + +/** + * Created by kramesha on 11/18/14. + */ +public class SetNotifiers { + private List notifierList; + + public SetNotifiers(List notifierList) { + this.notifierList = notifierList; + } + + public List getNotifierList() { + return notifierList; + } +}