blob: b88b5ff684313d5718e497b5f69a2394b8ab35f3 [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;
Ray Milkey35958232015-07-29 11:19:28 -070021import org.onlab.packet.IpAddress;
22
23import com.google.common.collect.ImmutableSet;
Madan Jampani7d2fab22015-03-18 17:21:57 -070024
tomb41d1ac2014-09-24 01:51:24 -070025/**
26 * Test adapter for the cluster service.
27 */
28public class ClusterServiceAdapter implements ClusterService {
Ray Milkey35958232015-07-29 11:19:28 -070029 ControllerNode local = new DefaultControllerNode(new NodeId("local"),
30 IpAddress.valueOf("127.0.0.1"));
31
tomb41d1ac2014-09-24 01:51:24 -070032 @Override
33 public ControllerNode getLocalNode() {
Ray Milkey35958232015-07-29 11:19:28 -070034 return local;
tomb41d1ac2014-09-24 01:51:24 -070035 }
36
37 @Override
38 public Set<ControllerNode> getNodes() {
Ray Milkey35958232015-07-29 11:19:28 -070039 return ImmutableSet.of(local);
tomb41d1ac2014-09-24 01:51:24 -070040 }
41
42 @Override
43 public ControllerNode getNode(NodeId nodeId) {
44 return null;
45 }
46
47 @Override
48 public ControllerNode.State getState(NodeId nodeId) {
49 return null;
50 }
51
52 @Override
Madan Jampani7d2fab22015-03-18 17:21:57 -070053 public DateTime getLastUpdated(NodeId nodeId) {
54 return null;
55 }
56
57 @Override
tomb41d1ac2014-09-24 01:51:24 -070058 public void addListener(ClusterEventListener listener) {
59 }
60
61 @Override
62 public void removeListener(ClusterEventListener listener) {
63 }
64}