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 / GetCandidates.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.ORMap;
14 import akka.cluster.ddata.ORSet;
15 import akka.cluster.ddata.typed.javadsl.Replicator.GetResponse;
16 import org.eclipse.jdt.annotation.NonNull;
17 import org.eclipse.jdt.annotation.Nullable;
18 import org.opendaylight.mdsal.eos.dom.api.DOMEntity;
19
20 public final class GetCandidates extends StateCheckerCommand {
21     private final @Nullable GetResponse<ORMap<DOMEntity, ORSet<String>>> response;
22     private final @NonNull ActorRef<GetEntitiesReply> replyTo;
23
24     public GetCandidates(final GetResponse<ORMap<DOMEntity, ORSet<String>>> response,
25                          final ActorRef<GetEntitiesReply> replyTo) {
26         this.response = response;
27         this.replyTo = requireNonNull(replyTo);
28     }
29
30     public @Nullable GetResponse<ORMap<DOMEntity, ORSet<String>>> getResponse() {
31         return response;
32     }
33
34     public @NonNull ActorRef<GetEntitiesReply> getReplyTo() {
35         return replyTo;
36     }
37 }