Upgraded to Support VES 7.0
[dcaegen2/services/mapper.git] / UniversalVesAdapter / src / main / java / org / onap / dcaegen2 / ves / domain / ves7_0 / IpmiNicArray.java
1 /*\r
2 * ============LICENSE_START=======================================================\r
3 * ONAP : DCAE\r
4 * ================================================================================\r
5 * Copyright 2018 TechMahindra\r
6 *=================================================================================\r
7 * Licensed under the Apache License, Version 2.0 (the "License");\r
8 * you may not use this file except in compliance with the License.\r
9 * You may obtain a copy of the License at\r
10 *\r
11 *     http://www.apache.org/licenses/LICENSE-2.0\r
12 *\r
13 * Unless required by applicable law or agreed to in writing, software\r
14 * distributed under the License is distributed on an "AS IS" BASIS,\r
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16 * See the License for the specific language governing permissions and\r
17 * limitations under the License.\r
18 * ============LICENSE_END=========================================================\r
19 */\r
20 package org.onap.dcaegen2.ves.domain.ves7_0;\r
21 \r
22 import com.fasterxml.jackson.annotation.JsonInclude;\r
23 import com.fasterxml.jackson.annotation.JsonProperty;\r
24 import com.fasterxml.jackson.annotation.JsonPropertyDescription;\r
25 import com.fasterxml.jackson.annotation.JsonPropertyOrder;\r
26 import org.apache.commons.lang.builder.EqualsBuilder;\r
27 import org.apache.commons.lang.builder.HashCodeBuilder;\r
28 import org.apache.commons.lang.builder.ToStringBuilder;\r
29 \r
30 \r
31 /**\r
32  * intelligent platform management interface (ipmi) network interface control card (nic) metrics\r
33  * \r
34  */\r
35 @JsonInclude(JsonInclude.Include.NON_NULL)\r
36 @JsonPropertyOrder({\r
37     "nicIdentifier",\r
38     "nicTemperature"\r
39 })\r
40 public class IpmiNicArray {\r
41 \r
42     /**\r
43      * identifier for the network interface control card\r
44      * (Required)\r
45      * \r
46      */\r
47     @JsonProperty("nicIdentifier")\r
48     @JsonPropertyDescription("identifier for the network interface control card")\r
49     private String nicIdentifier;\r
50     /**\r
51      * nic temperature in celsius\r
52      * \r
53      */\r
54     @JsonProperty("nicTemperature")\r
55     @JsonPropertyDescription("nic temperature in celsius")\r
56     private Double nicTemperature;\r
57 \r
58     /**\r
59      * identifier for the network interface control card\r
60      * (Required)\r
61      * \r
62      */\r
63     @JsonProperty("nicIdentifier")\r
64     public String getNicIdentifier() {\r
65         return nicIdentifier;\r
66     }\r
67 \r
68     /**\r
69      * identifier for the network interface control card\r
70      * (Required)\r
71      * \r
72      */\r
73     @JsonProperty("nicIdentifier")\r
74     public void setNicIdentifier(String nicIdentifier) {\r
75         this.nicIdentifier = nicIdentifier;\r
76     }\r
77 \r
78     /**\r
79      * nic temperature in celsius\r
80      * \r
81      */\r
82     @JsonProperty("nicTemperature")\r
83     public Double getNicTemperature() {\r
84         return nicTemperature;\r
85     }\r
86 \r
87     /**\r
88      * nic temperature in celsius\r
89      * \r
90      */\r
91     @JsonProperty("nicTemperature")\r
92     public void setNicTemperature(Double nicTemperature) {\r
93         this.nicTemperature = nicTemperature;\r
94     }\r
95 \r
96     @Override\r
97     public String toString() {\r
98         return ToStringBuilder.reflectionToString(this);\r
99     }\r
100 \r
101     @Override\r
102     public int hashCode() {\r
103         return new HashCodeBuilder().append(nicIdentifier).append(nicTemperature).toHashCode();\r
104     }\r
105 \r
106     @Override\r
107     public boolean equals(Object other) {\r
108         if (other == this) {\r
109             return true;\r
110         }\r
111         if ((other instanceof IpmiNicArray) == false) {\r
112             return false;\r
113         }\r
114         IpmiNicArray rhs = ((IpmiNicArray) other);\r
115         return new EqualsBuilder().append(nicIdentifier, rhs.nicIdentifier).append(nicTemperature, rhs.nicTemperature).isEquals();\r
116     }\r
117 \r
118 }\r