Introduce DOMEntityOwnershipService replacement
[controller.git] / opendaylight / md-sal / eos-dom-akka / src / main / java / org / opendaylight / controller / eos / akka / owner / checker / command / InternalGetReply.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 import org.opendaylight.mdsal.eos.dom.api.DOMEntity;
17
18 public final class InternalGetReply extends StateCheckerCommand {
19     private final @NonNull GetResponse<LWWRegister<String>> response;
20     private final @NonNull ActorRef<GetOwnershipStateReply> replyTo;
21     private final @NonNull DOMEntity entity;
22
23     public InternalGetReply(final GetResponse<LWWRegister<String>> response, final DOMEntity entity,
24                             final ActorRef<GetOwnershipStateReply> replyTo) {
25         this.response = requireNonNull(response);
26         this.entity = requireNonNull(entity);
27         this.replyTo = requireNonNull(replyTo);
28     }
29
30     public @NonNull GetResponse<LWWRegister<String>> getResponse() {
31         return response;
32     }
33
34     public @NonNull DOMEntity getEntity() {
35         return entity;
36     }
37
38     public @NonNull ActorRef<GetOwnershipStateReply> getReplyTo() {
39         return replyTo;
40     }
41 }