860fac7e2034fd3bef2fe06e3c9f4de9f9f910f8
[appc.git] / appc-sequence-generator / appc-sequence-generator-bundle / src / main / java / org / openecomp / appc / seqgen / objects / PreCheckOption.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 PreCheckOption {
30
31     @JsonProperty("pre-transactionID")
32     private Integer preTransactionId;
33
34     @JsonProperty("param-name")
35     private String paramName;
36
37     @JsonProperty("param-value")
38     private String paramValue;
39
40     private String rule;
41
42
43     public Integer getPreTransactionId() {
44         return preTransactionId;
45     }
46
47     public void setPreTransactionId(Integer preTransactionId) {
48         this.preTransactionId = preTransactionId;
49     }
50
51     public String getParamName() {
52         return paramName;
53     }
54
55     public void setParamName(String paramName) {
56         this.paramName = paramName;
57     }
58
59     public String getParamValue() {
60         return paramValue;
61     }
62
63     public void setParamValue(String paramValue) {
64         this.paramValue = paramValue;
65     }
66
67     public String getRule() {
68         return rule;
69     }
70
71     public void setRule(String rule) {
72         this.rule = rule;
73     }
74 }