com.solidfire.element.api.GetClusterVersionInfoResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solidfire-sdk-java Show documentation
Show all versions of solidfire-sdk-java Show documentation
Library for interfacing with the Public and Incubating SolidFire Element API.
The newest version!
/*
* Copyright © 2014-2016 NetApp, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* DO NOT EDIT THIS CODE BY HAND! It has been generated with jsvcgen.
*/
package com.solidfire.element.api;
import com.solidfire.gson.Gson;
import com.solidfire.core.client.Attributes;
import com.solidfire.gson.annotations.SerializedName;
import com.solidfire.core.annotation.Since;
import com.solidfire.core.javautil.Optional;
import java.io.Serializable;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Objects;
/**
* GetClusterVersionInfoResult
**/
public class GetClusterVersionInfoResult implements Serializable {
public static final long serialVersionUID = 7467984518886463810L;
@SerializedName("clusterAPIVersion") private String clusterAPIVersion;
@SerializedName("clusterVersion") private String clusterVersion;
@SerializedName("clusterVersionInfo") private ClusterVersionInfo[] clusterVersionInfo;
@SerializedName("softwareVersionInfo") private SoftwareVersionInfo softwareVersionInfo;
// empty constructor
@Since("7.0")
public GetClusterVersionInfoResult() {}
// parameterized constructor
@Since("7.0")
public GetClusterVersionInfoResult(
String clusterAPIVersion,
String clusterVersion,
ClusterVersionInfo[] clusterVersionInfo,
SoftwareVersionInfo softwareVersionInfo
)
{
this.clusterAPIVersion = clusterAPIVersion;
this.clusterVersion = clusterVersion;
this.clusterVersionInfo = clusterVersionInfo;
this.softwareVersionInfo = softwareVersionInfo;
}
/**
*
**/
public String getClusterAPIVersion() { return this.clusterAPIVersion; }
public void setClusterAPIVersion(String clusterAPIVersion) {
this.clusterAPIVersion = clusterAPIVersion;
}
/**
*
**/
public String getClusterVersion() { return this.clusterVersion; }
public void setClusterVersion(String clusterVersion) {
this.clusterVersion = clusterVersion;
}
/**
*
**/
public ClusterVersionInfo[] getClusterVersionInfo() { return this.clusterVersionInfo; }
public void setClusterVersionInfo(ClusterVersionInfo[] clusterVersionInfo) {
this.clusterVersionInfo = clusterVersionInfo;
}
/**
*
**/
public SoftwareVersionInfo getSoftwareVersionInfo() { return this.softwareVersionInfo; }
public void setSoftwareVersionInfo(SoftwareVersionInfo softwareVersionInfo) {
this.softwareVersionInfo = softwareVersionInfo;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GetClusterVersionInfoResult that = (GetClusterVersionInfoResult) o;
return
Objects.equals(clusterAPIVersion, that.clusterAPIVersion) &&
Objects.equals(clusterVersion, that.clusterVersion) &&
Arrays.equals(clusterVersionInfo, that.clusterVersionInfo) &&
Objects.equals(softwareVersionInfo, that.softwareVersionInfo);
}
@Override
public int hashCode() {
return Objects.hash( clusterAPIVersion,clusterVersion,(Object[])clusterVersionInfo,softwareVersionInfo );
}
public java.util.Map toMap() {
java.util.Map map = new HashMap<>();
map.put("clusterAPIVersion", clusterAPIVersion);
map.put("clusterVersion", clusterVersion);
map.put("clusterVersionInfo", clusterVersionInfo);
map.put("softwareVersionInfo", softwareVersionInfo);
return map;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
Gson gson = new Gson();
sb.append( "{ " );
sb.append(" clusterAPIVersion : ").append(gson.toJson(clusterAPIVersion)).append(",");
sb.append(" clusterVersion : ").append(gson.toJson(clusterVersion)).append(",");
sb.append(" clusterVersionInfo : ").append(gson.toJson(Arrays.toString(clusterVersionInfo))).append(",");
sb.append(" softwareVersionInfo : ").append(gson.toJson(softwareVersionInfo)).append(",");
sb.append( " }" );
if(sb.lastIndexOf(", }") != -1)
sb.deleteCharAt(sb.lastIndexOf(", }"));
return sb.toString();
}
public static Builder builder() {
return new Builder();
}
public final Builder asBuilder() {
return new Builder().buildFrom(this);
}
public static class Builder {
private String clusterAPIVersion;
private String clusterVersion;
private ClusterVersionInfo[] clusterVersionInfo;
private SoftwareVersionInfo softwareVersionInfo;
private Builder() { }
public GetClusterVersionInfoResult build() {
return new GetClusterVersionInfoResult (
this.clusterAPIVersion,
this.clusterVersion,
this.clusterVersionInfo,
this.softwareVersionInfo);
}
private GetClusterVersionInfoResult.Builder buildFrom(final GetClusterVersionInfoResult req) {
this.clusterAPIVersion = req.clusterAPIVersion;
this.clusterVersion = req.clusterVersion;
this.clusterVersionInfo = req.clusterVersionInfo;
this.softwareVersionInfo = req.softwareVersionInfo;
return this;
}
public GetClusterVersionInfoResult.Builder clusterAPIVersion(final String clusterAPIVersion) {
this.clusterAPIVersion = clusterAPIVersion;
return this;
}
public GetClusterVersionInfoResult.Builder clusterVersion(final String clusterVersion) {
this.clusterVersion = clusterVersion;
return this;
}
public GetClusterVersionInfoResult.Builder clusterVersionInfo(final ClusterVersionInfo[] clusterVersionInfo) {
this.clusterVersionInfo = clusterVersionInfo;
return this;
}
public GetClusterVersionInfoResult.Builder softwareVersionInfo(final SoftwareVersionInfo softwareVersionInfo) {
this.softwareVersionInfo = softwareVersionInfo;
return this;
}
}
}