Migrate to Spring Boot
[aai/gizmo.git] / src / main / java / org / onap / crud / event / response / GraphEventResponseMessage.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License 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=========================================================
20  */
21 package org.onap.crud.event.response;
22
23 import java.text.MessageFormat;
24
25 /**
26  * Graph event handling messages, including logging and exceptions.
27  */
28 public enum GraphEventResponseMessage {
29
30     //@formatter:off
31     BASE_OPERATION_LOG_MESSAGE("Event response received: {0} with key: {1}, transaction-id: {2}, operation: {3}, result: {4}"),
32     OPERATION_ERROR_LOG_MESSAGE("{0}, error: {1}"),
33     OPERATION_ERROR_EXCEPTION_MESSAGE("Operation Failed with transaction-id: {0}. Error: {1}"),
34     POLICY_VIOLATION_LOG_MESSAGE("Event response received: transaction-id: {0}, event source: {1}, event type: {2}, object key: {3}, object type: {4}, operation: {5}, result: policy violations detected in request, error: {6}"),
35     POLICY_VIOLATION_EXCEPTION_MESSAGE("Operation Failed with transaction-id {0}. Error: policy violations detected in request, {1}");
36     //@formatter:on
37
38     private String message;
39
40     private GraphEventResponseMessage(String message) {
41         this.message = message;
42     }
43
44     /**
45      * @param args to be formatted
46      * @return the formatted error message
47      */
48     public String getMessage(Object... args) {
49         MessageFormat formatter = new MessageFormat("");
50         formatter.applyPattern(this.message);
51         return formatter.format(args);
52     }
53 }