/* * 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.eos.common.spi; import org.eclipse.jdt.annotation.NonNull; import org.opendaylight.mdsal.eos.common.api.GenericEntity; import org.opendaylight.mdsal.eos.common.api.GenericEntityOwnershipCandidateRegistration; import org.opendaylight.yangtools.concepts.AbstractObjectRegistration; import org.opendaylight.yangtools.concepts.HierarchicalIdentifier; /** * 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(final @NonNull E entity) { super(entity); } }