blob: aca74ecc629f298b16c5cf424dd67dcd1ccc813c [file] [log] [blame]
Jordan Halterman980a8c12017-09-22 18:01:19 -07001/*
2 * Copyright 2017-present Open Networking Foundation
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 */
16package org.onosproject.cluster;
17
18import java.util.Set;
19
20import org.joda.time.DateTime;
21import org.onosproject.core.Version;
22
23/**
24 * Compatible cluster service adapter.
25 */
26public class UnifiedClusterServiceAdapter implements UnifiedClusterService {
27 @Override
28 public ControllerNode getLocalNode() {
29 return null;
30 }
31
32 @Override
33 public Set<ControllerNode> getNodes() {
34 return null;
35 }
36
37 @Override
38 public ControllerNode getNode(NodeId nodeId) {
39 return null;
40 }
41
42 @Override
43 public ControllerNode.State getState(NodeId nodeId) {
44 return null;
45 }
46
47 @Override
48 public Version getVersion(NodeId nodeId) {
49 return null;
50 }
51
52 @Override
53 public DateTime getLastUpdated(NodeId nodeId) {
54 return null;
55 }
56
57 @Override
58 public void addListener(ClusterEventListener listener) {
59
60 }
61
62 @Override
63 public void removeListener(ClusterEventListener listener) {
64
65 }
66}