Update java files with correct license text
[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 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  * ============LICENSE_END=========================================================
21  */
22 package org.onap.appc.flow.controller.data;
23
24 import java.util.List;
25
26 import com.fasterxml.jackson.annotation.JsonProperty;
27
28 public class PreCheck {
29
30
31     @JsonProperty("precheck-operator")
32     private String  precheckOperator;
33
34     public String getPrecheckOperator() {
35         return precheckOperator;
36     }
37
38     public void setPrecheckOperator(String precheckOperator) {
39         this.precheckOperator = precheckOperator;
40     }
41
42     @JsonProperty("precheck-options")
43     private List<PrecheckOption>  precheckOptions;
44
45     public List<PrecheckOption> getPrecheckOptions() {
46         return precheckOptions;
47     }
48
49     public void setPrecheckOptions(List<PrecheckOption> precheckOptions) {
50         this.precheckOptions = precheckOptions;
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 }