blob: 672c81fa5ad95cc0e85dc4da203d4474c4e68c4e [file] [log] [blame]
Hyunsun Moon4c396632016-05-13 04:17:53 -07001/*
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 */
16package org.onosproject.xosclient.impl;
17
18import org.onosproject.xosclient.api.VtnPort;
19import org.onosproject.xosclient.api.VtnPortApi;
20import org.onosproject.xosclient.api.VtnPortId;
21import org.onosproject.xosclient.api.VtnServiceId;
22import org.onosproject.xosclient.api.XosAccess;
23
24import java.util.Set;
25
26/**
27 * Provides CORD VTN port APIs.
28 */
29public class DefaultVtnPortApi extends XosApi implements VtnPortApi {
30
31 /**
32 * Default constructor.
33 *
34 * @param baseUrl base url
35 * @param access xos access
36 */
37 public DefaultVtnPortApi(String baseUrl, XosAccess access) {
38 super(baseUrl, access);
39 }
40
41 @Override
42 public Set<VtnPort> vtnPorts() {
43 // TODO implement this when XOS provides this information
44 return null;
45 }
46
47 @Override
48 public Set<VtnPort> vtnPorts(VtnServiceId serviceId) {
49 // TODO implement this when XOS provides this information
50 return null;
51 }
52
53 @Override
54 public VtnPort vtnPort(VtnPortId portId) {
55 // TODO implement this when XOS provides this information
56 return null;
57 }
58}