blob: 6d2a45547ebd96cbdb9643b38def93d860a4d4f3 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
tom73d6d1e2014-09-17 20:08:01 -070016package org.onlab.onos.cluster;
17
18import java.util.Set;
19
20/**
tome4729872014-09-23 00:37:37 -070021 * Service for obtaining information about the individual nodes within
tom73d6d1e2014-09-17 20:08:01 -070022 * the controller cluster.
23 */
24public interface ClusterService {
25
26 /**
tome4729872014-09-23 00:37:37 -070027 * Returns the local controller node.
28 *
29 * @return local controller node
30 */
31 ControllerNode getLocalNode();
32
33 /**
tom73d6d1e2014-09-17 20:08:01 -070034 * Returns the set of current cluster members.
35 *
36 * @return set of cluster members
37 */
tome4729872014-09-23 00:37:37 -070038 Set<ControllerNode> getNodes();
tom73d6d1e2014-09-17 20:08:01 -070039
40 /**
tome4729872014-09-23 00:37:37 -070041 * Returns the specified controller node.
tom73d6d1e2014-09-17 20:08:01 -070042 *
tome4729872014-09-23 00:37:37 -070043 * @param nodeId controller node identifier
44 * @return controller node
45 */
46 ControllerNode getNode(NodeId nodeId);
47
48 /**
49 * Returns the availability state of the specified controller node.
50 *
51 * @param nodeId controller node identifier
tom73d6d1e2014-09-17 20:08:01 -070052 * @return availability state
53 */
tome4729872014-09-23 00:37:37 -070054 ControllerNode.State getState(NodeId nodeId);
tom73d6d1e2014-09-17 20:08:01 -070055
tomfc9a4ff2014-09-22 18:22:47 -070056 /**
57 * Adds the specified cluster event listener.
58 *
59 * @param listener the cluster listener
60 */
61 void addListener(ClusterEventListener listener);
tom73d6d1e2014-09-17 20:08:01 -070062
tomfc9a4ff2014-09-22 18:22:47 -070063 /**
64 * Removes the specified cluster event listener.
65 *
66 * @param listener the cluster listener
67 */
68 void removeListener(ClusterEventListener listener);
tom73d6d1e2014-09-17 20:08:01 -070069
70}