blob: 3294a0912543eadc23cbf48f8328ef3482066193 [file] [log] [blame]
Kyuhwi Choic5b33ea2016-04-26 11:45:32 +09001/*
2 * Copyright 2016-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 */
16
Hyunsun Moon71701292016-05-09 12:00:54 -070017package org.onosproject.scalablegateway.impl;
Kyuhwi Choic5b33ea2016-04-26 11:45:32 +090018
19import org.onosproject.core.GroupId;
20import org.onosproject.net.DeviceId;
21import org.onosproject.net.PortNumber;
Hyunsun Moon71701292016-05-09 12:00:54 -070022import org.onosproject.scalablegateway.api.GatewayNode;
23import org.onosproject.scalablegateway.api.ScalableGatewayService;
Kyuhwi Choic5b33ea2016-04-26 11:45:32 +090024
25import java.util.List;
26
27/**
28 * Manages gateway node for gateway scalability.
29 */
30public class ScalableGatewayManager implements ScalableGatewayService {
31
32 @Override
33 public GatewayNode getGatewayNode(DeviceId deviceId) {
34 return null;
35 }
36
37 @Override
38 public List<PortNumber> getGatewayExternalPorts(DeviceId deviceId) {
39 return null;
40 }
41
42 @Override
43 public GroupId getGroupIdForGatewayLoadBalance(DeviceId srcDeviceId) {
44 return null;
45 }
46
47 @Override
48 public List<GatewayNode> getGatewayNodes() {
49 return null;
50 }
51
52 @Override
53 public List<DeviceId> getGatewayDeviceIds() {
54 return null;
55 }
56
57 @Override
58 public boolean addGatewayNode(GatewayNode gatewayNode) {
59 return false;
60 }
61
62 @Override
63 public boolean deleteGatewayNode(GatewayNode gatewayNode) {
64 return false;
65 }
66}