3f016a444f26678756d2b4a5dac26ea704011c27
[controller.git] / ListenerRegistrationMessage.java
1 /*
2  * Copyright (c) 2015 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.datastore.messages;
9
10 import akka.actor.ActorPath;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
12
13 public interface ListenerRegistrationMessage {
14     YangInstanceIdentifier getPath();
15
16     boolean isRegisterOnAllInstances();
17
18     ActorPath getListenerActorPath();
19 }