blob: eba3de8a1c0f41a6d5f64c976dff64e9616881a0 [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
17package org.onosproject.scalablegateway;
18
19import org.onosproject.core.GroupId;
20import org.onosproject.net.DeviceId;
21import org.onosproject.net.PortNumber;
22
23import java.util.List;
24
25/**
26 * Manages gateway node for gateway scalability.
27 */
28public class ScalableGatewayManager implements ScalableGatewayService {
29
30 @Override
31 public GatewayNode getGatewayNode(DeviceId deviceId) {
32 return null;
33 }
34
35 @Override
36 public List<PortNumber> getGatewayExternalPorts(DeviceId deviceId) {
37 return null;
38 }
39
40 @Override
41 public GroupId getGroupIdForGatewayLoadBalance(DeviceId srcDeviceId) {
42 return null;
43 }
44
45 @Override
46 public List<GatewayNode> getGatewayNodes() {
47 return null;
48 }
49
50 @Override
51 public List<DeviceId> getGatewayDeviceIds() {
52 return null;
53 }
54
55 @Override
56 public boolean addGatewayNode(GatewayNode gatewayNode) {
57 return false;
58 }
59
60 @Override
61 public boolean deleteGatewayNode(GatewayNode gatewayNode) {
62 return false;
63 }
64}