Sonar issues review, fix properties constant name.
[dmaap/messagerouter/dmaapclient.git] / src / main / java / org / onap / dmaap / mr / client / DmaapClientConst.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2021 Orange Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
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  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *
21  *******************************************************************************/
22
23 package org.onap.dmaap.mr.client;
24
25 public final class DmaapClientConst {
26
27     private DmaapClientConst() {
28     }
29
30     public static final String ID = "id";
31     public static final String AUTH_KEY = "authKey";
32     public static final String AUTH_DATE = "authDate";
33     public static final String PASSWORD = "password";
34     public static final String USERNAME = "username";
35     public static final String FILTER = "filter";
36     public static final String HOST = "host";
37     public static final String DME2PREFERRED_ROUTER_FILE_PATH = "DME2preferredRouterFilePath";
38     public static final String TOPIC = "topic";
39     public static final String TRANSPORT_TYPE = "TransportType";
40     public static final String MAX_BATCH_SIZE = "maxBatchSize";
41     public static final String MAX_AGE_MS = "maxAgeMs";
42     public static final String MESSAGE_SENT_THREAD_OCCURRENCE_OLD = "MessageSentThreadOccurance";
43     public static final String MESSAGE_SENT_THREAD_OCCURRENCE = "MessageSentThreadOccurrence";
44     public static final String GROUP = "group";
45     public static final String SERVICE_NAME = "ServiceName";
46     public static final String PARTNER = "Partner";
47     public static final String ROUTE_OFFER = "routeOffer";
48     public static final String PROTOCOL = "Protocol";
49     public static final String METHOD_TYPE = "MethodType";
50     public static final String CONTENT_TYPE = "contenttype";
51     public static final String LATITUDE = "Latitude";
52     public static final String LONGITUDE = "Longitude";
53     public static final String AFT_ENVIRONMENT = "AFT_ENVIRONMENT";
54     public static final String VERSION = "Version";
55     public static final String ENVIRONMENT = "Environment";
56     public static final String SUB_CONTEXT_PATH = "SubContextPath";
57     public static final String SESSION_STICKINESS_REQUIRED = "sessionstickinessrequired";
58     public static final String PARTITION = "partition";
59     public static final String COMPRESS = "compress";
60     public static final String TIMEOUT = "timeout";
61     public static final String LIMIT = "limit";
62     public static final String AFT_DME2_EP_READ_TIMEOUT_MS = "AFT_DME2_EP_READ_TIMEOUT_MS";
63     public static final String AFT_DME2_ROUNDTRIP_TIMEOUT_MS = "AFT_DME2_ROUNDTRIP_TIMEOUT_MS";
64     public static final String AFT_DME2_EP_CONN_TIMEOUT = "AFT_DME2_EP_CONN_TIMEOUT";
65     public static final String AFT_DME2_EXCHANGE_REQUEST_HANDLERS = "AFT_DME2_EXCHANGE_REQUEST_HANDLERS";
66     public static final String AFT_DME2_EXCHANGE_REPLY_HANDLERS = "AFT_DME2_EXCHANGE_REPLY_HANDLERS";
67     public static final String AFT_DME2_REQ_TRACE_ON = "AFT_DME2_REQ_TRACE_ON";
68     public static final String DME2_PER_HANDLER_TIMEOUT_MS = "DME2_PER_HANDLER_TIMEOUT_MS";
69     public static final String DME2_REPLY_HANDLER_TIMEOUT_MS = "DME2_REPLY_HANDLER_TIMEOUT_MS";
70
71 }