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