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; } }