blob: 181fcae4a24e41923c4f3a68fc9b6c07aabe18fb [file] [log] [blame]
Brian O'Connor7cbbbb72016-04-09 02:13:23 -07001/*
2 * Copyright 2015-present 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 */
Nikhil Cheerlad6734f62015-07-21 10:41:44 -070016package org.onosproject.flowanalyzer;
17import org.onosproject.net.topology.Topology;
18import org.onosproject.net.topology.TopologyGraph;
19import org.onosproject.net.topology.TopologyServiceAdapter;
20
21
22/**
23 * Created by nikcheerla on 7/20/15.
24 */
25public class MockTopologyService extends TopologyServiceAdapter {
26 TopologyGraph cur;
27
28 public MockTopologyService(TopologyGraph g) {
29 cur = g;
30 }
31
32 @Override
33 public TopologyGraph getGraph(Topology topology) {
34 return cur;
35 }
36}