Merge "Added support for using oauth token for Kafka"
[nonrtric/plt/ranpm.git] / datafilecollector / src / main / java / org / oran / datafile / configuration / SwaggerConfig.java
1 /*-
2  * ============LICENSE_START======================================================================
3  * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
4  * Copyright (C) 2018-2023 Nordix Foundation. All rights reserved.
5  * ===============================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  * ============LICENSE_END========================================================================
18  */
19
20 package org.oran.datafile.configuration;
21
22 import io.swagger.v3.oas.annotations.OpenAPIDefinition;
23 import io.swagger.v3.oas.annotations.info.Info;
24 import io.swagger.v3.oas.annotations.info.License;
25
26 @OpenAPIDefinition(
27     info = @Info(
28         title = SwaggerConfig.API_TITLE,
29         version = SwaggerConfig.VERSION,
30         description = SwaggerConfig.DESCRIPTION,
31         license = @License(
32             name = "Copyright (C) 2020-2023 NordixFoundation. Licensed under the Apache License.",
33             url = "http://www.apache.org/licenses/LICENSE-2.0")))
34 public class SwaggerConfig {
35
36     public static final String VERSION = "1.0";
37     public static final String API_TITLE = "DATAFILE App Server";
38     static final String DESCRIPTION = "<p>This page lists all the rest apis for DATAFILE app server.</p>";
39
40     private SwaggerConfig() {
41     }
42 }