Add instructions to invoke the linter and code formatter plugins to the README and...
[aai/schema-service.git] / aai-schema-service / src / main / java / org / onap / aai / schemaservice / edges / EdgeRules.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.aai.schemaservice.edges;
22
23 import com.google.gson.annotations.SerializedName;
24
25 import java.util.List;
26 import java.util.Objects;
27
28 public class EdgeRules {
29
30     @SerializedName("rules")
31     private List<EdgeRule> rules;
32
33     public EdgeRules(List<EdgeRule> rules) {
34         this.rules = rules;
35     }
36
37     public List<EdgeRule> getRules() {
38         return rules;
39     }
40
41     public void setRules(List<EdgeRule> rules) {
42         this.rules = rules;
43     }
44
45     @Override
46     public boolean equals(Object o) {
47
48         if (this == o) {
49             return true;
50         }
51
52         if (o == null || getClass() != o.getClass()) {
53             return false;
54         }
55
56         EdgeRules rules1 = (EdgeRules) o;
57
58         return Objects.equals(rules, rules1.rules);
59     }
60
61     @Override
62     public int hashCode() {
63         return Objects.hash(rules);
64     }
65
66     @Override
67     public String toString() {
68         return "EdgeRules{" + "rules=" + rules + '}';
69     }
70
71 }