com.solidfire.element.apiactual.ApiScheduleInfo 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.
/*
* 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.apiactual;
import com.solidfire.gson.annotations.SerializedName;
import com.solidfire.jsvcgen.annotation.Since;
import com.solidfire.jsvcgen.javautil.Optional;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Objects;
/**
* The unique name given to the schedule, the retention period for the snapshot that was created, and the volume ID of the volume from which the snapshot was created.
**/
public class ApiScheduleInfo implements Serializable {
private static final long serialVersionUID = -1935811007L;
@SerializedName("volumeID")
private final Optional volumeID;
@SerializedName("volumes")
private final Optional volumes;
@SerializedName("name")
private final Optional name;
@SerializedName("enableRemoteReplication")
private final Optional enableRemoteReplication;
@SerializedName("retention")
private final Optional retention;
/**
* @param volumeID (optional) The ID of the volume to be included in the snapshot.
* @param volumes (optional) A list of volume IDs to be included in the group snapshot.
* @param name (optional) The snapshot name to be used.
* @param enableRemoteReplication (optional) Indicates if the snapshot should be included in remote replication.
* @param retention (optional) The amount of time the snapshot will be retained in HH:mm:ss.
* @since 7.0
**/
@Since("7.0")
public ApiScheduleInfo(Optional volumeID, Optional volumes, Optional name, Optional enableRemoteReplication, Optional retention) {
this.name = (name == null) ? Optional.empty() : name;
this.volumes = (volumes == null) ? Optional.empty() : volumes;
this.retention = (retention == null) ? Optional.empty() : retention;
this.enableRemoteReplication = (enableRemoteReplication == null) ? Optional.empty() : enableRemoteReplication;
this.volumeID = (volumeID == null) ? Optional.empty() : volumeID;
}
/**
* The ID of the volume to be included in the snapshot.
**/
public Optional getVolumeID() {
return this.volumeID;
}
/**
* A list of volume IDs to be included in the group snapshot.
**/
public Optional getVolumes() {
return this.volumes;
}
/**
* The snapshot name to be used.
**/
public Optional getName() {
return this.name;
}
/**
* Indicates if the snapshot should be included in remote replication.
**/
public Optional getEnableRemoteReplication() {
return this.enableRemoteReplication;
}
/**
* The amount of time the snapshot will be retained in HH:mm:ss.
**/
public Optional getRetention() {
return this.retention;
}
/** {@inheritDoc} */
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ApiScheduleInfo that = (ApiScheduleInfo) o;
return Objects.equals(volumeID, that.volumeID)
&& Objects.deepEquals(volumes, that.volumes)
&& Objects.equals(name, that.name)
&& Objects.equals(enableRemoteReplication, that.enableRemoteReplication)
&& Objects.equals(retention, that.retention);
}
/** {@inheritDoc} */
@Override
public int hashCode() {
return Objects.hash(volumeID, volumes, name, enableRemoteReplication, retention);
}
/** {@inheritDoc} */
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
sb.append("{ ");
if (null != volumeID && volumeID.isPresent())
sb.append(" volumeID : ").append(volumeID.get()).append(",");
if (null != volumes && volumes.isPresent())
sb.append(" volumes : ").append(Arrays.toString(volumes.get())).append(",");
if (null != name && name.isPresent())
sb.append(" name : ").append(name.get()).append(",");
if (null != enableRemoteReplication && enableRemoteReplication.isPresent())
sb.append(" enableRemoteReplication : ").append(enableRemoteReplication.get()).append(",");
if (null != retention && retention.isPresent())
sb.append(" retention : ").append(retention.get());
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 Optional volumeID;
private Optional volumes;
private Optional name;
private Optional enableRemoteReplication;
private Optional retention;
/** Do not instantiate Builder. */
private Builder() {
}
public ApiScheduleInfo build() {
return new ApiScheduleInfo(
this.volumeID,
this.volumes,
this.name,
this.enableRemoteReplication,
this.retention);
}
private ApiScheduleInfo.Builder buildFrom(final ApiScheduleInfo req) {
this.volumeID = req.volumeID;
this.volumes = req.volumes;
this.name = req.name;
this.enableRemoteReplication = req.enableRemoteReplication;
this.retention = req.retention;
return this;
}
public ApiScheduleInfo.Builder optionalVolumeID(final Long volumeID) {
this.volumeID = (volumeID == null) ? Optional.empty() : Optional.of(volumeID);
return this;
}
public ApiScheduleInfo.Builder optionalVolumes(final Long[] volumes) {
this.volumes = (volumes == null) ? Optional.empty() : Optional.of(volumes);
return this;
}
public ApiScheduleInfo.Builder optionalName(final String name) {
this.name = (name == null) ? Optional.empty() : Optional.of(name);
return this;
}
public ApiScheduleInfo.Builder optionalEnableRemoteReplication(final Boolean enableRemoteReplication) {
this.enableRemoteReplication = (enableRemoteReplication == null) ? Optional.empty() : Optional.of(enableRemoteReplication);
return this;
}
public ApiScheduleInfo.Builder optionalRetention(final String retention) {
this.retention = (retention == null) ? Optional.empty() : Optional.of(retention);
return this;
}
}
}