Initial commit with all the necessary files
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / util / EntityList.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.openecomp.aai
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.openecomp.aai.util;
22
23 import java.util.ArrayList;
24 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27 import javax.annotation.Generated;
28 import com.fasterxml.jackson.annotation.JsonAnyGetter;
29 import com.fasterxml.jackson.annotation.JsonAnySetter;
30 import com.fasterxml.jackson.annotation.JsonIgnore;
31 import com.fasterxml.jackson.annotation.JsonInclude;
32 import com.fasterxml.jackson.annotation.JsonProperty;
33 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
34 import org.apache.commons.lang.builder.EqualsBuilder;
35 import org.apache.commons.lang.builder.HashCodeBuilder;
36 import org.apache.commons.lang.builder.ToStringBuilder;
37
38 @JsonInclude(JsonInclude.Include.NON_NULL)
39 @Generated("org.jsonschema2pojo")
40 @JsonPropertyOrder({
41     "entity"
42 })
43 public class EntityList {
44
45     @JsonProperty("entity")
46     private List<Entity> entity = new ArrayList<Entity>();
47     @JsonIgnore
48     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
49
50     /**
51      * 
52      * @return
53      *     The entity
54      */
55     @JsonProperty("entity")
56     public List<Entity> getEntity() {
57         return entity;
58     }
59
60     /**
61      * 
62      * @param entity
63      *     The entity
64      */
65     @JsonProperty("entity")
66     public void setEntity(List<Entity> entity) {
67         this.entity = entity;
68     }
69
70     public EntityList withEntity(List<Entity> entity) {
71         this.entity = entity;
72         return this;
73     }
74
75     @Override
76     public String toString() {
77         return ToStringBuilder.reflectionToString(this);
78     }
79
80     @JsonAnyGetter
81     public Map<String, Object> getAdditionalProperties() {
82         return this.additionalProperties;
83     }
84
85     @JsonAnySetter
86     public void setAdditionalProperty(String name, Object value) {
87         this.additionalProperties.put(name, value);
88     }
89
90     public EntityList withAdditionalProperty(String name, Object value) {
91         this.additionalProperties.put(name, value);
92         return this;
93     }
94
95     @Override
96     public int hashCode() {
97         return new HashCodeBuilder().append(entity).append(additionalProperties).toHashCode();
98     }
99
100     @Override
101     public boolean equals(Object other) {
102         if (other == this) {
103             return true;
104         }
105         if ((other instanceof EntityList) == false) {
106             return false;
107         }
108         EntityList rhs = ((EntityList) other);
109         return new EqualsBuilder().append(entity, rhs.entity).append(additionalProperties, rhs.additionalProperties).isEquals();
110     }
111
112 }