2 * ============LICENSE_START=======================================================
\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 
  11 *     http://www.apache.org/licenses/LICENSE-2.0
\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 
  20 package org.onap.dcaegen2.ves.domain.ves7_0;
\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 
  32  * intelligent platform management interface (ipmi) baseboard voltage regulator metrics
\r 
  35 @JsonInclude(JsonInclude.Include.NON_NULL)
\r 
  36 @JsonPropertyOrder({
\r 
  37     "baseboardVoltageRegulatorIdentifier",
\r 
  38     "voltageRegulatorTemperature"
\r 
  40 public class IpmiBaseboardVoltageRegulatorArray {
\r 
  43      * identifier for the baseboard voltage regulator
\r 
  47     @JsonProperty("baseboardVoltageRegulatorIdentifier")
\r 
  48     @JsonPropertyDescription("identifier for the baseboard voltage regulator")
\r 
  49     private String baseboardVoltageRegulatorIdentifier;
\r 
  51      * voltage regulator temperature in celsius
\r 
  54     @JsonProperty("voltageRegulatorTemperature")
\r 
  55     @JsonPropertyDescription("voltage regulator temperature in celsius")
\r 
  56     private Double voltageRegulatorTemperature;
\r 
  59      * identifier for the baseboard voltage regulator
\r 
  63     @JsonProperty("baseboardVoltageRegulatorIdentifier")
\r 
  64     public String getBaseboardVoltageRegulatorIdentifier() {
\r 
  65         return baseboardVoltageRegulatorIdentifier;
\r 
  69      * identifier for the baseboard voltage regulator
\r 
  73     @JsonProperty("baseboardVoltageRegulatorIdentifier")
\r 
  74     public void setBaseboardVoltageRegulatorIdentifier(String baseboardVoltageRegulatorIdentifier) {
\r 
  75         this.baseboardVoltageRegulatorIdentifier = baseboardVoltageRegulatorIdentifier;
\r 
  79      * voltage regulator temperature in celsius
\r 
  82     @JsonProperty("voltageRegulatorTemperature")
\r 
  83     public Double getVoltageRegulatorTemperature() {
\r 
  84         return voltageRegulatorTemperature;
\r 
  88      * voltage regulator temperature in celsius
\r 
  91     @JsonProperty("voltageRegulatorTemperature")
\r 
  92     public void setVoltageRegulatorTemperature(Double voltageRegulatorTemperature) {
\r 
  93         this.voltageRegulatorTemperature = voltageRegulatorTemperature;
\r 
  97     public String toString() {
\r 
  98         return ToStringBuilder.reflectionToString(this);
\r 
 102     public int hashCode() {
\r 
 103         return new HashCodeBuilder().append(baseboardVoltageRegulatorIdentifier).append(voltageRegulatorTemperature).toHashCode();
\r 
 107     public boolean equals(Object other) {
\r 
 108         if (other == this) {
\r 
 111         if ((other instanceof IpmiBaseboardVoltageRegulatorArray) == false) {
\r 
 114         IpmiBaseboardVoltageRegulatorArray rhs = ((IpmiBaseboardVoltageRegulatorArray) other);
\r 
 115         return new EqualsBuilder().append(baseboardVoltageRegulatorIdentifier, rhs.baseboardVoltageRegulatorIdentifier).append(voltageRegulatorTemperature, rhs.voltageRegulatorTemperature).isEquals();
\r