14bd8152c39a5d8c88a9bab1b4fdb8254856390a
[appc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
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
22 package org.openecomp.appc.executor.objects;
23
24
25 import org.apache.commons.lang3.StringUtils;
26 import org.openecomp.appc.domainmodel.lcm.Status;
27 import org.openecomp.appc.util.MessageFormatter;
28
29 import java.util.Map;
30
31 public enum LCMCommandStatus {
32
33     ACCEPTED(100,"ACCEPTED - request accepted"),
34
35     //ERROR(2xx) – request can’t be handled due to some technical error
36     UNEXPECTED_ERROR(200,"UNEXPECTED ERROR - ${errorMsg}"),
37
38     //REJECT(3xx) – request has been rejected due to some business reason (e.g. no such service-instance-id, command is not supported, etc)
39     REJECTED(300,"REJECTED - ${errorMsg}"),
40     INVALID_INPUT_PARAMETER(301,"INVALID INPUT PARAMETER - ${errorMsg}"),// TODO 77777777 to support "${paramName} with invalid value ${paramValue}"
41     MISSING_MANDATORY_PARAMETER(302,"MISSING MANDATORY PARAMETER - Parameter/s ${paramName} is/are missing" ),
42     REQUEST_PARSING_FAILED(303,"REQUEST PARSING FAILED - ${errorMsg}"),
43     NO_TRANSITION_DEFINE(304,"ACTION IS NOT ALLOWED - Action ${actionName} is not allowed for VNF in state ${currentState}"),
44     ACTION_NOT_SUPPORTED(305,"ACTION NOT SUPPORTED - ${actionName} action is not supported" ),
45     VNF_NOT_FOUND(306,"VNF NOT FOUND - VNF with ID ${vnfId} was not found" ),
46     DG_WORKFLOW_NOT_FOUND(307,"DG WORKFLOW NOT FOUND - No DG workflow found for the combination of ${dgModule} module ${dgName} name and ${dgVersion} version"),//TODO need to support it
47     WORKFLOW_NOT_FOUND(308,"WORKFLOW NOT FOUND - No workflow found for VNF type ${vnfTypeVersion} and ${actionName} action"),
48         UNSTABLE_VNF(309,"UNSTABLE VNF - VNF ${vnfId} is not stable to accept the command"),
49     LOCKING_FAILURE(310,"LOCKING FAILURE - ${errorMsg}" ),
50         EXPIRED_REQUEST(311,"EXPIRED REQUEST"),
51     DUPLICATE_REQUEST(312,"DUPLICATE REQUEST"),
52
53     SUCCESS(400,"SUCCESS - request has been processed successfully"),
54
55
56     //        FAILURE(5xx) – request processing results with failure. The FAILURE response is always transmitted asynchronously, via DMaaP.
57     DG_FAILURE(401,"DG FAILURE - ${errorMsg}"),
58     NO_TRANSITION_DEFINE_FAILURE(402,"NO TRANSITION DEFINE - No Transition Defined for ${actionName} action and ${currentState} state"),
59     UPDATE_AAI_FAILURE(403,"UPDATE_AAI_FAILURE - failed to update AAI. ${errorMsg}"),
60     EXPIRED_REQUEST_FAILURE(404,"EXPIRED REQUEST FAILURE - failed after accepted because TTL expired"),
61     UNEXPECTED_FAILURE(405,"UNEXPECTED FAILURE - ${errorMsg}"),
62     UNSTABLE_VNF_FAILURE(406,"UNSTABLE VNF FAILURE - VNF ${vnfId} is not stable to accept the command"),
63
64         ;
65
66
67     public static final String errorDgMessageParamName = "errorDgMessage";
68
69         private int responseCode;
70         private String responseMessage;
71
72
73
74
75     LCMCommandStatus(int responseCode, String responseMessage) {
76         this.responseCode = responseCode;
77         this.responseMessage = responseMessage;
78             }
79
80     public String getResponseMessage() {
81                 return responseMessage;
82         }
83
84         public int getResponseCode() {
85                 return responseCode;
86         }
87
88
89         /**
90      *
91      * @return  messageTemplate
92      */
93
94
95     public String getFormattedMessage(Params params){
96             Map<String,Object> paramsMap = params != null ? params.getParams() : null;
97             return MessageFormatter.format(getResponseMessage(),paramsMap);
98
99         }
100
101     public String getFormattedMessageWithCode(Params params){
102         return getResponseCode()+"-" + getFormattedMessage(params);
103     }
104
105     @Override
106     public String toString() {
107         return "LCMCommandStatus{" +
108                 "responseCode=" + responseCode +
109                 ", responseMessage='" + responseMessage + '\'' +
110                 '}';
111     }
112
113     public Status toStatus(Params params) {
114         return new Status(responseCode, getFormattedMessage(params));
115     }
116 }
117