Remove JournalWriter.getLastEntry()
[controller.git] / opendaylight / md-sal / eos-dom-akka / src / main / java / org / opendaylight / controller / eos / akka / CandidateRegistration.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;
9
10 import static java.util.Objects.requireNonNull;
11
12 import org.opendaylight.mdsal.eos.dom.api.DOMEntity;
13 import org.opendaylight.mdsal.eos.dom.api.DOMEntityOwnershipCandidateRegistration;
14 import org.opendaylight.yangtools.concepts.AbstractObjectRegistration;
15
16 final class CandidateRegistration extends AbstractObjectRegistration<DOMEntity>
17         implements DOMEntityOwnershipCandidateRegistration {
18     private final AkkaEntityOwnershipService service;
19
20     CandidateRegistration(final DOMEntity instance, final AkkaEntityOwnershipService service) {
21         super(instance);
22         this.service = requireNonNull(service);
23     }
24
25     @Override
26     protected void removeRegistration() {
27         service.unregisterCandidate(getInstance());
28     }
29 }