blob: 0470dc4cf1561d262a96e367947420f8be2acf86 [file] [log] [blame]
Jian Lia80b1582019-01-25 12:47:42 +09001/*
2 * Copyright 2019-present Open Networking Foundation
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.k8snetworking.web;
17
18import org.onlab.rest.AbstractWebApplication;
19
20import java.util.Set;
21
22/**
23 * Kubernetes networking REST APIs web application.
24 */
25public class K8sNetworkingWebApplication extends AbstractWebApplication {
26 @Override
27 public Set<Class<?>> getClasses() {
28 return getClasses(
29 K8sNetworkWebResource.class,
Jian Li9b199162019-02-10 18:00:35 +090030 K8sPortWebResource.class,
Jian Li8938b3c2019-06-20 22:47:32 +090031 K8sIpamWebResource.class,
32 K8sManagementWebResource.class
Jian Lia80b1582019-01-25 12:47:42 +090033 );
34 }
35}