Merge "Bug 1029: Remove dead code: samples/clustersession"
[controller.git] / opendaylight / adsal / clustering / services / src / main / java / org / opendaylight / controller / clustering / services / IClusterGlobalServices.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 /**
11  * @file   IClusterGlobalServices.java
12  *
13  * @brief  : Set of services an application will expect from the
14  * clustering services provider. This interface is supposed to have
15  * Global scope
16  *
17  * Contract between the applications and the clustering service
18  * providers. Global version
19  */
20
21 package org.opendaylight.controller.clustering.services;
22
23 /**
24  * Set of services an application will expect from the clustering services
25  * provider. This interface is supposed to have Global scope
26  *
27  */
28 public interface IClusterGlobalServices extends IClusterServicesCommon {
29     public void removeContainerCaches(String containerName);
30 }