Mark AD-SAL interfaces as deprecated
[controller.git] / opendaylight / adsal / sal / api / src / main / java / org / opendaylight / controller / sal / topology / ITopologyService.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 package org.opendaylight.controller.sal.topology;
11
12 /**
13  * @file   ITopologyService.java
14  *
15  * @brief  Topology methods provided by SAL toward the applications
16  *
17  * For example An application that startup late in the game or restart
18  * for example, wants to know the current status of SAL, so can use
19  * this interface to get a bunlk sync of the topology status.
20  */
21
22 /**
23  * Topology methods provided by SAL toward the applications
24  */
25 @Deprecated
26 public interface ITopologyService {
27     /**
28      * Tell to SAL that is time to send the updates of the
29      * current topology because someone joined late the game
30      *
31      */
32     public void sollicitRefresh();
33 }