8adc0dac13fd583985264b64f723dd3ad29ce74b
[controller.git] / opendaylight / md-sal / sal-akka-raft-example / src / main / java / org / opendaylight / controller / cluster / example / messages / SetNotifiers.java
1 package org.opendaylight.controller.cluster.example.messages;
2
3 import java.util.List;
4
5 /**
6  * Created by kramesha on 11/18/14.
7  */
8 public class SetNotifiers {
9     private List<String> notifierList;
10
11     public SetNotifiers(List<String> notifierList) {
12         this.notifierList = notifierList;
13     }
14
15     public List<String> getNotifierList() {
16         return notifierList;
17     }
18 }