Fix checkstyle contridictions on datarouter node
[dmaap/datarouter.git] / datarouter-node / src / main / java / org / onap / dmaap / datarouter / node / eelf / EelfMsgs.java
1 /*******************************************************************************
2  * ============LICENSE_START==================================================
3  * * org.onap.dmaap
4  * * ===========================================================================
5  * * Copyright © 2017 AT&T 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  * *
11  *  *      http://www.apache.org/licenses/LICENSE-2.0
12  * *
13  *  * Unless required by applicable law or agreed to in writing, software
14  * * distributed under the License is distributed on an "AS IS" BASIS,
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * * See the License for the specific language governing permissions and
17  * * limitations under the License.
18  * * ============LICENSE_END====================================================
19  * *
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  * *
22  ******************************************************************************/
23
24 package org.onap.dmaap.datarouter.node.eelf;
25
26 import com.att.eelf.i18n.EELFResolvableErrorEnum;
27 import com.att.eelf.i18n.EELFResourceManager;
28
29 public enum EelfMsgs implements EELFResolvableErrorEnum {
30
31     /**
32      * Application message prints user (accepts one argument).
33      */
34
35     MESSAGE_WITH_BEHALF,
36
37     /**
38      * Application message prints user and FeedID (accepts two arguments).
39      */
40
41     MESSAGE_WITH_BEHALF_AND_FEEDID,
42
43     ENTRY,
44
45     EXIT,
46
47     INVOKE,
48
49     /**
50      * Application message prints keystore file error in EELF errors log.
51      */
52
53     MESSAGE_KEYSTORE_LOAD_ERROR,
54
55     /**
56      * Application message prints Error extracting my name from my keystore file.
57      */
58
59     MESSAGE_KEYSORE_NAME_ERROR,
60
61     /**
62      * Application message prints Error parsing configuration data from provisioning server.
63      */
64
65
66     MESSAGE_PARSING_ERROR,
67
68     /**
69      * Application message printsConfiguration failed.
70      */
71
72
73     MESSAGE_CONF_FAILED,
74
75     /**
76      * Application message prints Bad provisioning server URL.
77      */
78
79
80     MESSAGE_BAD_PROV_URL,
81
82     /**
83      * Application message prints Unable to fetch canonical name from keystore file.
84      */
85
86
87     MESSAGE_KEYSTORE_FETCH_ERROR,
88
89     /**
90      * Application message prints Unable to load local configuration file.
91      */
92
93
94     MESSAGE_PROPERTIES_LOAD_ERROR;
95
96
97     /**
98      * Static initializer to ensure the resource bundles for this class are loaded...
99      * Here this application loads messages from three bundles
100      */
101     static {
102         EELFResourceManager.loadMessageBundle("EelfMessages");
103     }
104 }