88682ae7f31950944d1537e3c0376498bc9e45e8
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / RegisterDataTreeChangeListenerReply.java
1 /*
2  * Copyright (c) 2015 Cisco 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.ActorRef;
11 import com.google.common.base.Preconditions;
12 import java.io.Serializable;
13
14 /**
15  * Successful reply to a {@link RegisterDataTreeChangeListener} request.
16  */
17 public final class RegisterDataTreeChangeListenerReply implements Serializable {
18     private static final long serialVersionUID = 1L;
19     private final ActorRef listenerRegistrationPath;
20
21     public RegisterDataTreeChangeListenerReply(final ActorRef listenerRegistrationPath) {
22         this.listenerRegistrationPath = Preconditions.checkNotNull(listenerRegistrationPath);
23     }
24
25     public ActorRef getListenerRegistrationPath() {
26         return listenerRegistrationPath;
27     }
28 }