/* * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.mdsal.common.api.clustering; import com.google.common.base.Preconditions; import javax.annotation.Nonnull; import org.opendaylight.yangtools.concepts.AbstractObjectRegistration; import org.opendaylight.yangtools.concepts.Path; /** * Abstract base class for an EntityOwnershipCandidateRegistration. * * @param

the instance identifier path type * @param the GenericEntity type */ public abstract class AbstractGenericEntityOwnershipCandidateRegistration

, E extends GenericEntity

> extends AbstractObjectRegistration implements GenericEntityOwnershipCandidateRegistration { protected AbstractGenericEntityOwnershipCandidateRegistration(@Nonnull final E entity) { super(Preconditions.checkNotNull(entity, "entity cannot be null")); } }