2 * ===============LICENSE_START=======================================================
4 * ===================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property & Tech Mahindra. All rights reserved.
6 * Modifications Copyright (C) 2019 Nordix Foundation.
7 * ===================================================================================
8 * This Acumos software file is distributed by AT&T and Tech Mahindra
9 * under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
13 * http://www.apache.org/licenses/LICENSE-2.0
15 * This file is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ===============LICENSE_END=========================================================
22 package com.logging.rest.example.springbootswagger2.controller;
26 * Constants class to list all the REST API endpoints
28 public class APINames {
30 public static final String CHARSET = "application/json;charset=utf-8";
32 public static final String GET_CATALOG_TEST = "/catalogTest";
33 public static final String GET_CATALOG_TEST_REQUEST = GET_CATALOG_TEST + "/{markerInput}";
34 public static final String CREATE_RTU_USER = "/createRtuUser/{markerInputVal}/{user}";
35 public static final String CREATE_RTU_USER_TEST = CREATE_RTU_USER + "/{markerInputVal}/{user}";
37 public static final String INFO = "/info";
38 public static final String GET_INFO = INFO + "/{revisionId}/{solutionId}";
40 public static final String TEST = "/test";
41 public static final String GET_TEST = TEST + "/{markerInput}/{user}";
43 public static final String DEBUG = "/debug";
44 public static final String DEBUG_TEST = DEBUG + "/{markerInput}/{markerInput1}/{user}";