com.solidfire.element.api.DeleteInitiatorsRequest 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;
/**
* DeleteInitiatorsRequest
* DeleteInitiators enables you to delete one or more initiators from the system (and from any associated volumes or volume access
* groups).
* If DeleteInitiators fails to delete one of the initiators provided in the parameter, the system returns an error and does not delete any
* initiators (no partial completion is possible).
**/
public class DeleteInitiatorsRequest implements Serializable {
public static final long serialVersionUID = -376670804932131093L;
@SerializedName("initiators") private Long[] initiators;
// empty constructor
@Since("7.0")
public DeleteInitiatorsRequest() {}
// parameterized constructor
@Since("7.0")
public DeleteInitiatorsRequest(
Long[] initiators
)
{
this.initiators = initiators;
}
/**
* An array of IDs of initiators to delete.
**/
public Long[] getInitiators() { return this.initiators; }
public void setInitiators(Long[] initiators) {
this.initiators = initiators;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DeleteInitiatorsRequest that = (DeleteInitiatorsRequest) o;
return
Arrays.equals(initiators, that.initiators);
}
@Override
public int hashCode() {
return Objects.hash( (Object[])initiators );
}
public java.util.Map toMap() {
java.util.Map map = new HashMap<>();
map.put("initiators", initiators);
return map;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
Gson gson = new Gson();
sb.append( "{ " );
sb.append(" initiators : ").append(gson.toJson(Arrays.toString(initiators))).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 Long[] initiators;
private Builder() { }
public DeleteInitiatorsRequest build() {
return new DeleteInitiatorsRequest (
this.initiators);
}
private DeleteInitiatorsRequest.Builder buildFrom(final DeleteInitiatorsRequest req) {
this.initiators = req.initiators;
return this;
}
public DeleteInitiatorsRequest.Builder initiators(final Long[] initiators) {
this.initiators = initiators;
return this;
}
}
}