Add an actor for entity rpc execution.
[controller.git] / opendaylight / md-sal / eos-dom-akka / src / main / java / org / opendaylight / controller / eos / akka / owner / checker / command / OwnerDataResponse.java
1 /*
2  * Copyright (c) 2021 PANTHEON.tech, s.r.o. 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.eos.akka.owner.checker.command;
9
10 import static java.util.Objects.requireNonNull;
11
12 import akka.actor.typed.ActorRef;
13 import akka.cluster.ddata.LWWRegister;
14 import akka.cluster.ddata.typed.javadsl.Replicator.GetResponse;
15 import org.eclipse.jdt.annotation.NonNull;
16
17 public class OwnerDataResponse extends StateCheckerCommand {
18     private final @NonNull GetResponse<LWWRegister<String>> response;
19     private final ActorRef<GetEntitiesReply> replyTo;
20
21     public OwnerDataResponse(final GetResponse<LWWRegister<String>> response,
22                              final ActorRef<GetEntitiesReply> replyTo) {
23         this.response = requireNonNull(response);
24         this.replyTo = replyTo;
25     }
26
27     public @NonNull GetResponse<LWWRegister<String>> getResponse() {
28         return response;
29     }
30
31     public ActorRef<GetEntitiesReply> getReplyTo() {
32         return replyTo;
33     }
34 }