Merge "BUG 2820 - LLDP refactor"
[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.ActorPath;
11 import akka.actor.ActorRef;
12 import com.google.common.base.Preconditions;
13
14 import java.io.Serializable;
15
16 /**
17  * Successful reply to a {@link RegisterDataTreeChangeListener} request.
18  */
19 public final class RegisterDataTreeChangeListenerReply implements Serializable {
20     private static final long serialVersionUID = 1L;
21     private final ActorRef listenerRegistrationPath;
22
23     public RegisterDataTreeChangeListenerReply(final ActorRef listenerRegistrationPath) {
24         this.listenerRegistrationPath = Preconditions.checkNotNull(listenerRegistrationPath);
25     }
26
27     public ActorPath getListenerRegistrationPath() {
28         return listenerRegistrationPath.path();
29     }
30 }