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