BUG-8327: deprecate sal.core.api.model.SchemaService
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / RegisterDataTreeNotificationListenerReply.java
1 /*
2  * Copyright (c) 2017 Inocybe Technologies 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 akka.actor.ActorRef;
12 import com.google.common.base.Preconditions;
13 import java.io.Serializable;
14
15 /**
16  * Successful reply to a notification listener registration request.
17  *
18  * @author Thomas Pantelis
19  */
20 public class RegisterDataTreeNotificationListenerReply implements Serializable {
21     private static final long serialVersionUID = 1L;
22
23     private final ActorRef listenerRegistrationPath;
24
25     public RegisterDataTreeNotificationListenerReply(final ActorRef listenerRegistrationPath) {
26         this.listenerRegistrationPath = Preconditions.checkNotNull(listenerRegistrationPath);
27     }
28
29     public ActorPath getListenerRegistrationPath() {
30         return listenerRegistrationPath.path();
31     }
32 }