697e13e3b635451e4af08fc286be119ef8015c82
[appc.git] / appc-sequence-generator / appc-sequence-generator-bundle / src / main / java / org / openecomp / appc / seqgen / objects / RequestInfo.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 @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
28 @JsonIgnoreProperties(ignoreUnknown = true)
29 public class RequestInfo {
30
31     private String action;
32
33     @JsonProperty("action-level")
34     private String actionLevel;
35
36     @JsonProperty("action-identifier")
37     private ActionIdentifier actionIdentifier;
38
39     private String payload;
40
41     public String getAction() {
42         return action;
43     }
44
45     public void setAction(String action) {
46         this.action = action;
47     }
48
49     public String getActionLevel() {
50         return actionLevel;
51     }
52
53     public void setActionLevel(String actionLevel) {
54         this.actionLevel = actionLevel;
55     }
56
57     public ActionIdentifier getActionIdentifier() {
58         return actionIdentifier;
59     }
60
61     public void setActionIdentifier(ActionIdentifier actionIdentifier) {
62         this.actionIdentifier = actionIdentifier;
63     }
64
65     public String getPayload() {
66         return payload;
67     }
68
69     public void setPayload(String payload) {
70         this.payload = payload;
71     }
72 }