Bug 4105: Add public EntityOwnershipService interface
[controller.git] / opendaylight / md-sal / sal-common-api / src / main / java / org / opendaylight / controller / md / sal / common / api / clustering / EntityOwnershipCandidate.java
1 /*
2  * Copyright (c) 2015 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.controller.md.sal.common.api.clustering;
10
11 /**
12  * <p>
13  * An EntityOwnershipCandidate represents a component which would like to own a given Entity.
14  * The EntityOwnershipCandidate will be notified of changes in ownership as it is also an EntityOwnershipListener.
15  * </p>
16  */
17 public interface EntityOwnershipCandidate extends EntityOwnershipListener {
18 }