Applying license changes to all files
[appc.git] / appc-oam / appc-oam-bundle / src / main / java / org / openecomp / appc / oam / OAMCommandStatus.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.oam;
26
27
28 import org.openecomp.appc.executor.objects.Params;
29 import org.openecomp.appc.util.MessageFormatter;
30
31 import java.util.Map;
32
33 public enum OAMCommandStatus {
34
35     ACCEPTED(100,"ACCEPTED - request accepted"),
36
37     //ERROR(2xx) – request can’t be handled due to some technical error
38     UNEXPECTED_ERROR(200,"UNEXPECTED ERROR - ${errorMsg}"),
39
40     SUCCESS(400,"SUCCESS - request has been processed successfully"),
41         ;
42
43
44     public static final String errorDgMessageParamName = "errorDgMessage";
45
46         private int responseCode;
47         private String responseMessage;
48
49
50
51
52     OAMCommandStatus(int responseCode, String responseMessage) {
53         this.responseCode = responseCode;
54         this.responseMessage = responseMessage;
55             }
56
57     public String getResponseMessage() {
58                 return responseMessage;
59         }
60
61         public int getResponseCode() {
62                 return responseCode;
63         }
64
65
66         /**
67      *
68      * @return  messageTemplate
69      */
70
71
72     public String getFormattedMessage(Params params){
73             Map<String,Object> paramsMap = params != null ? params.getParams() : null;
74             return MessageFormatter.format(getResponseMessage(),paramsMap);
75
76         }
77
78     public String getFormattedMessageWithCode(Params params){
79         return getResponseCode()+"-" + getFormattedMessage(params);
80     }
81
82     @Override
83     public String toString() {
84         return "OAMCommandStatus{" +
85                 "responseCode=" + responseCode +
86                 ", responseMessage='" + responseMessage + '\'' +
87                 '}';
88     }
89 }
90