9247e6e7fdf5b9eacedd3cf557657d0dcb5f7bcf
[appc.git] / appc-sequence-generator / appc-sequence-generator-bundle / src / main / java / org / openecomp / appc / seqgen / objects / Response.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APP-C
4  * ================================================================================
5  * Copyright (C) 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
21 package org.openecomp.appc.seqgen.objects;
22
23 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
26
27 import java.util.Map;
28
29 @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
30 @JsonIgnoreProperties(ignoreUnknown = true)
31 public class Response {
32
33     @JsonProperty("response-code")
34     private String responseCode;
35
36     @JsonProperty("response-message")
37     private String responseMessage;
38
39     @JsonProperty("response-action")
40     private Map<String,String> responseAction;
41
42     public String getResponseCode() {
43         return responseCode;
44     }
45
46     public void setResponseCode(String responseCode) {
47         this.responseCode = responseCode;
48     }
49
50     public String getResponseMessage() {
51         return responseMessage;
52     }
53
54     public void setResponseMessage(String responseMessage) {
55         this.responseMessage = responseMessage;
56     }
57
58     public Map<String, String> getResponseAction() {
59         return responseAction;
60     }
61
62     public void setResponseAction(Map<String, String> responseAction) {
63         this.responseAction = responseAction;
64     }
65 }