7ebe4b53431e056a89310fc6b6fa0654aff59c93
[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 package org.onap.dmaap.datarouter.node.eelf;
24
25 import com.att.eelf.i18n.EELFResolvableErrorEnum;
26 import com.att.eelf.i18n.EELFResourceManager;
27
28 public enum EelfMsgs implements EELFResolvableErrorEnum {
29
30     /**
31      * Application message prints user (accepts one argument)
32      */
33     MESSAGE_WITH_BEHALF,
34
35     /**
36      * Application message prints user and FeedID (accepts two arguments)
37      */
38
39     MESSAGE_WITH_BEHALF_AND_FEEDID,
40
41     /**
42      * Application message prints keystore file error in EELF errors log
43      */
44
45     MESSAGE_KEYSTORE_LOAD_ERROR,
46
47     /**
48      * Application message prints Error extracting my name from my keystore file
49      */
50
51     MESSAGE_KEYSORE_NAME_ERROR,
52
53     /**
54      * Application message prints Error parsing configuration data from provisioning server.
55      */
56
57
58     MESSAGE_PARSING_ERROR,
59
60     /**
61      * Application message printsConfiguration failed
62      */
63
64
65     MESSAGE_CONF_FAILED,
66
67     /**
68      * Application message prints Bad provisioning server URL
69      */
70
71
72     MESSAGE_BAD_PROV_URL,
73
74     /**
75      * Application message prints Unable to fetch canonical name from keystore file
76      */
77
78
79     MESSAGE_KEYSTORE_FETCH_ERROR,
80
81     /**
82      * Application message prints Unable to load local configuration file.
83      */
84
85
86     MESSAGE_PROPERTIES_LOAD_ERROR;
87
88
89     /**
90      * Static initializer to ensure the resource bundles for this class are loaded...
91      * Here this application loads messages from three bundles
92      */
93     static {
94         EELFResourceManager.loadMessageBundle("EelfMessages");
95     }
96 }