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