blob: 87052ba1713b8b9ccee78e7b9522cd36b0dd9c6a [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cluster;
tomb41d1ac2014-09-24 01:51:24 -070017
18import java.util.Set;
19
Madan Jampani7d2fab22015-03-18 17:21:57 -070020import org.joda.time.DateTime;
21
tomb41d1ac2014-09-24 01:51:24 -070022/**
23 * Test adapter for the cluster service.
24 */
25public class ClusterServiceAdapter implements ClusterService {
26 @Override
27 public ControllerNode getLocalNode() {
28 return null;
29 }
30
31 @Override
32 public Set<ControllerNode> getNodes() {
33 return null;
34 }
35
36 @Override
37 public ControllerNode getNode(NodeId nodeId) {
38 return null;
39 }
40
41 @Override
42 public ControllerNode.State getState(NodeId nodeId) {
43 return null;
44 }
45
46 @Override
Madan Jampani7d2fab22015-03-18 17:21:57 -070047 public DateTime getLastUpdated(NodeId nodeId) {
48 return null;
49 }
50
51 @Override
tomb41d1ac2014-09-24 01:51:24 -070052 public void addListener(ClusterEventListener listener) {
53 }
54
55 @Override
56 public void removeListener(ClusterEventListener listener) {
57 }
58}