831c1852319b5bf1411acae8456c6529bda81b38
[mdsal.git] / singleton-service / mdsal-singleton-common-api / src / main / java / org / opendaylight / mdsal / singleton / common / api / ClusterSingletonServiceRegistration.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.singleton.common.api;
10
11 /**
12  * {@link ClusterSingletonServiceRegistration} interface contains a marker for
13  * holding ClusterSingletonService registration and posibility to close it
14  * via {@link AutoCloseable} interface.
15  */
16 public interface ClusterSingletonServiceRegistration extends AutoCloseable {
17
18     /**
19      * Empty body for mark a ClusterSingletonService Registration instance
20      */
21 }