BUG 2302 : odl-clustering-test-app should not be part of the odl-restconf-all feature set
[controller.git] / opendaylight / adsal / sal / api / src / main / java / org / opendaylight / controller / sal / inventory / IInventoryService.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.inventory;
11
12 import java.util.Map;
13 import java.util.Set;
14 import java.util.concurrent.ConcurrentMap;
15
16 import org.opendaylight.controller.sal.core.Node;
17 import org.opendaylight.controller.sal.core.NodeConnector;
18 import org.opendaylight.controller.sal.core.Property;
19
20 /**
21  * The Interface describes methods invoked from application toward SAL to
22  * solicit existing inventory data.
23  */
24 public interface IInventoryService {
25     /**
26      * The method retrieves all the existing nodes and properties attached
27      *
28      * @return map of {@link org.opendaylight.controller.sal.core.Node} and {@link org.opendaylight.controller.sal.core.Property}
29      */
30     public ConcurrentMap<Node, Map<String, Property>> getNodeProps();
31
32     /**
33      * The method retrieves all the configured nodes that are not connected to
34      * the controller
35      *
36      * @return Set of {@link org.opendaylight.controller.sal.core.Node}
37      */
38     public Set<Node> getConfiguredNotConnectedNodes();
39     /**
40      * The method retrieve all the existing nodeConnectors and their properties
41      *
42      * @return map of {@link org.opendaylight.controller.sal.core.NodeConnector} and {@link org.opendaylight.controller.sal.core.Property}
43      */
44     public ConcurrentMap<NodeConnector, Map<String, Property>> getNodeConnectorProps();
45 }