Merge "Fixed unneeded wrapping of guava for karaf"
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / RegisterChangeListenerReply.java
1 /*
2  * Copyright (c) 2014 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
9 package org.opendaylight.controller.cluster.datastore.messages;
10
11 import akka.actor.ActorPath;
12 import akka.actor.ActorSystem;
13 import org.opendaylight.controller.protobuff.messages.registration.ListenerRegistrationMessages;
14
15 public class RegisterChangeListenerReply implements SerializableMessage{
16   public static final Class SERIALIZABLE_CLASS = ListenerRegistrationMessages.RegisterChangeListenerReply.class;
17   private final ActorPath listenerRegistrationPath;
18
19   public RegisterChangeListenerReply(ActorPath listenerRegistrationPath) {
20     this.listenerRegistrationPath = listenerRegistrationPath;
21   }
22
23   public ActorPath getListenerRegistrationPath() {
24     return listenerRegistrationPath;
25   }
26
27   @Override
28   public ListenerRegistrationMessages.RegisterChangeListenerReply toSerializable() {
29     return ListenerRegistrationMessages.RegisterChangeListenerReply.newBuilder()
30             .setListenerRegistrationPath(listenerRegistrationPath.toString()).build();
31   }
32
33   public static RegisterChangeListenerReply fromSerializable(ActorSystem actorSystem,Object serializable){
34     ListenerRegistrationMessages.RegisterChangeListenerReply o = (ListenerRegistrationMessages.RegisterChangeListenerReply) serializable;
35     return new RegisterChangeListenerReply(
36         actorSystem.actorFor(o.getListenerRegistrationPath()).path()
37         );
38   }
39 }