756d01ad47254b030bfeaf6274959d7edd931add
[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     ENTRY,
42
43     EXIT,
44
45     INVOKE,
46
47     /**
48      * Application message prints keystore file error in EELF errors log
49      */
50
51     MESSAGE_KEYSTORE_LOAD_ERROR,
52
53     /**
54      * Application message prints Error extracting my name from my keystore file
55      */
56
57     MESSAGE_KEYSORE_NAME_ERROR,
58
59     /**
60      * Application message prints Error parsing configuration data from provisioning server.
61      */
62
63
64     MESSAGE_PARSING_ERROR,
65
66     /**
67      * Application message printsConfiguration failed
68      */
69
70
71     MESSAGE_CONF_FAILED,
72
73     /**
74      * Application message prints Bad provisioning server URL
75      */
76
77
78     MESSAGE_BAD_PROV_URL,
79
80     /**
81      * Application message prints Unable to fetch canonical name from keystore file
82      */
83
84
85     MESSAGE_KEYSTORE_FETCH_ERROR,
86
87     /**
88      * Application message prints Unable to load local configuration file.
89      */
90
91
92     MESSAGE_PROPERTIES_LOAD_ERROR;
93
94
95     /**
96      * Static initializer to ensure the resource bundles for this class are loaded...
97      * Here this application loads messages from three bundles
98      */
99     static {
100         EELFResourceManager.loadMessageBundle("EelfMessages");
101     }
102 }