blob: 57b3d0153bb10d926724e3440f1bae5ac2a9a088 [file] [log] [blame]
Konstantinos Kanonakis0c374482017-01-18 15:03:47 -06001/*
2 * Copyright 2014-2015 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.mefscaapi;
18
19import org.onlab.rest.AbstractWebApplication;
20import org.onosproject.mefscaapi.api.JacksonJsonProvider;
21import org.onosproject.mefscaapi.api.SCAETHFDFrECApi;
22import org.onosproject.mefscaapi.api.SCAETHFPPUNINApi;
23import org.onosproject.mefscaapi.api.SCAETHFlowDomainApi;
24
25import java.util.Set;
26
27/**
28 * MEF SCA API web application.
29 */
30public class MefScaApiWebApplication extends AbstractWebApplication {
31 @Override
32 public Set<Class<?>> getClasses() {
33 return getClasses(SCAETHFDFrECApi.class, SCAETHFlowDomainApi.class, SCAETHFPPUNINApi.class,
34 JacksonJsonProvider.class);
35 }
36}
37