d7e3c0268b1f96bd900bbb53dba440d421da110e
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / onap / appc / flow / controller / data / PreCheck.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 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  *
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.appc.flow.controller.data;
22
23 import java.util.List;
24
25 import com.fasterxml.jackson.annotation.JsonProperty;
26
27 public class PreCheck {
28
29
30     @JsonProperty("precheck-operator")
31     private String  precheckOperator;
32
33     public String getPrecheckOperator() {
34         return precheckOperator;
35     }
36
37     public void setPrecheckOperator(String precheckOperator) {
38         this.precheckOperator = precheckOperator;
39     }
40
41     @JsonProperty("precheck-options")
42     private List<PrecheckOption>  precheckOptions;
43
44     public List<PrecheckOption> getPrecheckOptions() {
45         return precheckOptions;
46     }
47
48     public void setPrecheckOptions(List<PrecheckOption> precheckOptions) {
49         this.precheckOptions = precheckOptions;
50     }
51
52     @Override
53     public int hashCode() {
54         final int prime = 31;
55         int result = 1;
56         result = prime * result + ((precheckOperator == null) ? 0 : precheckOperator.hashCode());
57         result = prime * result + ((precheckOptions == null) ? 0 : precheckOptions.hashCode());
58         return result;
59     }
60
61     @Override
62     public boolean equals(Object obj) {
63         if (this == obj)
64             return true;
65         if (obj == null)
66             return false;
67         if (getClass() != obj.getClass())
68             return false;
69         PreCheck other = (PreCheck) obj;
70         if (precheckOperator == null) {
71             if (other.precheckOperator != null)
72                 return false;
73         } else if (!precheckOperator.equals(other.precheckOperator))
74             return false;
75         if (precheckOptions == null) {
76             if (other.precheckOptions != null)
77                 return false;
78         } else if (!precheckOptions.equals(other.precheckOptions))
79             return false;
80         return true;
81     }
82
83     @Override
84     public String toString() {
85         return "PreCheck [precheckOperator=" + precheckOperator + ", precheckOptions=" + precheckOptions + "]";
86     }
87
88 }