88e515b0df9031f0a072052f0013cf53eb1dc163
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / main / java / org / openecomp / appc / listener / LCM / model / InputBody.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.listener.LCM.model;
26
27 import org.openecomp.appc.listener.LCM.operation.OperationStatus;
28
29 import com.fasterxml.jackson.annotation.JsonIgnore;
30 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
31 import com.fasterxml.jackson.annotation.JsonProperty;
32 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
33
34
35 @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
36 @JsonIgnoreProperties(ignoreUnknown = true)
37 public class InputBody {
38
39     @JsonProperty("common-header")
40     private CommonHeader commonHeader;
41
42     @JsonProperty("action-identifiers")
43     private ActionIdentifiers actionIdentifiers;
44
45     @JsonProperty("action")
46     private String action;
47
48     @JsonProperty("payload")
49     private Object payload;
50
51
52     public Object getPayload() {
53         return payload;
54     }
55
56     public void setPayload(Object payload) {
57         this.payload = payload;
58     }
59     @JsonIgnore
60     public void setPayloadAsString(String payload) {
61         this.payload = payload;
62     }
63
64     public String getAction() {
65         return action;
66     }
67
68     public void setAction(String action) {
69         this.action = action;
70     }
71
72     public ActionIdentifiers getActionIdentifiers() {
73         return actionIdentifiers;
74     }
75
76     public void setActionIdentifiers(ActionIdentifiers actionIdentifiers) {
77         this.actionIdentifiers = actionIdentifiers;
78     }
79
80     public CommonHeader getCommonHeader() {
81         return commonHeader;
82     }
83
84     public void setCommonHeader(CommonHeader commonHeader) {
85         this.commonHeader = commonHeader;
86     }
87
88 //    public String toOutgoing(OperationStatus operationStatus) {
89 //        OutputBody out = new OutputBody(this);
90 //        out.setStatus(new ResponseStatus(operationStatus.getCode(), operationStatus.getValue()));
91 //        return out.toResponse().toString();
92 //    }
93
94 //    public String toOutgoing(OperationStatus operationStatus,String islocked) {
95 //        OutputBody out = new OutputBody(this);
96 //        out.setStatus(new ResponseStatus(operationStatus.getCode(), operationStatus.getValue()));
97 //        out.setLocked(islocked);
98 //        return out.toResponse().toString();
99 //    }
100
101     @JsonIgnore
102     public boolean isValid() {
103         return getCommonHeader() != null;
104     }
105 }