Move and split EntityOwnershipService common-api
[mdsal.git] / entityownership / mdsal-eos-common-spi / src / main / java / org / opendaylight / mdsal / common / api / clustering / AbstractGenericEntityOwnershipCandidateRegistration.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. 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
9 package org.opendaylight.mdsal.common.api.clustering;
10
11 import com.google.common.base.Preconditions;
12 import javax.annotation.Nonnull;
13 import org.opendaylight.yangtools.concepts.AbstractObjectRegistration;
14 import org.opendaylight.yangtools.concepts.Path;
15
16 /**
17  * Abstract base class for an EntityOwnershipCandidateRegistration.
18  *
19  * @param <P> the instance identifier path type
20  * @param <E> the GenericEntity type
21  */
22 public abstract class AbstractGenericEntityOwnershipCandidateRegistration<P extends Path<P>, E extends GenericEntity<P>>
23         extends AbstractObjectRegistration<E>
24         implements GenericEntityOwnershipCandidateRegistration<P, E> {
25
26     protected AbstractGenericEntityOwnershipCandidateRegistration(@Nonnull final E entity) {
27         super(Preconditions.checkNotNull(entity, "entity cannot be null"));
28     }
29 }
30