Introduce DOMEntityOwnershipService replacement
[controller.git] / opendaylight / md-sal / eos-dom-akka / src / main / java / org / opendaylight / controller / eos / akka / owner / checker / command / GetOwnershipStateReply.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 org.eclipse.jdt.annotation.Nullable;
11 import org.opendaylight.mdsal.eos.common.api.EntityOwnershipState;
12
13 public final class GetOwnershipStateReply extends StateCheckerReply {
14     private final @Nullable EntityOwnershipState ownershipState;
15
16     public GetOwnershipStateReply(final EntityOwnershipState ownershipState) {
17         this.ownershipState = ownershipState;
18     }
19
20     public @Nullable EntityOwnershipState getOwnershipState() {
21         return ownershipState;
22     }
23 }