db76895ab26fecb07ae04923832b0d40d27957f7
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / openecomp / appc / flow / controller / data / PreCheck.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.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     
53     @Override
54     public int hashCode() {
55         final int prime = 31;
56         int result = 1;
57         result = prime * result + ((precheckOperator == null) ? 0 : precheckOperator.hashCode());
58         result = prime * result + ((precheckOptions == null) ? 0 : precheckOptions.hashCode());
59         return result;
60     }
61
62     @Override
63     public boolean equals(Object obj) {
64         if (this == obj)
65             return true;
66         if (obj == null)
67             return false;
68         if (getClass() != obj.getClass())
69             return false;
70         PreCheck other = (PreCheck) obj;
71         if (precheckOperator == null) {
72             if (other.precheckOperator != null)
73                 return false;
74         } else if (!precheckOperator.equals(other.precheckOperator))
75             return false;
76         if (precheckOptions == null) {
77             if (other.precheckOptions != null)
78                 return false;
79         } else if (!precheckOptions.equals(other.precheckOptions))
80             return false;
81         return true;
82     }
83
84     @Override
85     public String toString() {
86         return "PreCheck [precheckOperator=" + precheckOperator + ", precheckOptions=" + precheckOptions + "]";
87     }
88     
89     
90     
91     
92
93 }