
org.jclouds.softlayer.domain.VirtualGuestBlockDeviceTemplateGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jclouds-shaded Show documentation
Show all versions of jclouds-shaded Show documentation
Provides a shaded jclouds with relocated guava and guice
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.jclouds.softlayer.domain;
import static shaded.com.google.common.base.Preconditions.checkNotNull;
import java.beans.ConstructorProperties;
import java.util.Set;
import org.jclouds.javax.annotation.Nullable;
import shaded.com.google.common.base.MoreObjects;
import shaded.com.google.common.base.Objects;
import shaded.com.google.common.collect.ImmutableSet;
/**
* Class VirtualGuestBlockDeviceTemplateGroup
*
* @see
*/
public class VirtualGuestBlockDeviceTemplateGroup {
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return builder().fromVirtualGuestBlockDeviceTemplateGroup(this);
}
public static class Builder {
protected int id;
protected String name;
protected String globalIdentifier;
protected int statusId;
protected int accountId;
protected int parentId;
protected String summary;
protected ImmutableSet.Builder children = ImmutableSet.builder();
protected ImmutableSet.Builder blockDevices = ImmutableSet.builder();
/**
* @see org.jclouds.softlayer.domain.VirtualGuestBlockDeviceTemplateGroup#getId()
*/
public Builder id(int id) {
this.id = id;
return this;
}
/**
* @see org.jclouds.softlayer.domain.VirtualGuestBlockDeviceTemplateGroup#getName()
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* @see org.jclouds.softlayer.domain.VirtualGuestBlockDeviceTemplateGroup#getGlobalIdentifier()
*/
public Builder globalIdentifier(String globalIdentifier) {
this.globalIdentifier = globalIdentifier;
return this;
}
/**
* @see org.jclouds.softlayer.domain.VirtualGuestBlockDeviceTemplateGroup#getStatusId()
*/
public Builder statusId(int statusId) {
this.statusId = statusId;
return this;
}
/**
* @see org.jclouds.softlayer.domain.VirtualGuestBlockDeviceTemplateGroup#getAccountId()
*/
public Builder accountId(int accountId) {
this.accountId = accountId;
return this;
}
/**
* @see VirtualGuestBlockDeviceTemplateGroup#getParentId()
*/
public Builder parentId(int parentId) {
this.parentId = parentId;
return this;
}
/**
* @see org.jclouds.softlayer.domain.VirtualGuestBlockDeviceTemplateGroup#getSummary()
*/
public Builder summary(String summary) {
this.summary = summary;
return this;
}
/**
* @see VirtualGuestBlockDeviceTemplateGroup#getChildren()
*/
public Builder children(Iterable children) {
this.children.addAll(checkNotNull(children, "children"));
return this;
}
public Builder children(VirtualGuestBlockDeviceTemplateGroup... in) {
return children(ImmutableSet.copyOf(checkNotNull(in, "children")));
}
/**
* @see org.jclouds.softlayer.domain.VirtualGuestBlockDeviceTemplateGroup#getBlockDevices()
*/
public Builder blockDevices(Set blockDevices) {
this.blockDevices.addAll(checkNotNull(blockDevices, "blockDevices"));
return this;
}
public Builder blockDevices(VirtualGuestBlockDeviceTemplate... in) {
return blockDevices(ImmutableSet.copyOf(checkNotNull(in, "blockDevices")));
}
public VirtualGuestBlockDeviceTemplateGroup build() {
return new VirtualGuestBlockDeviceTemplateGroup(id, name, globalIdentifier, statusId, accountId, parentId,
summary, children.build(), blockDevices.build());
}
public Builder fromVirtualGuestBlockDeviceTemplateGroup(VirtualGuestBlockDeviceTemplateGroup in) {
return this
.id(in.getId())
.name(in.getName())
.statusId(in.getStatusId())
.accountId(in.getAccountId())
.parentId(in.getParentId())
.summary(in.getSummary())
.children(in.getChildren())
.blockDevices(in.getBlockDevices());
}
}
private final int id;
private final String name;
private final String globalIdentifier;
private final int statusId;
private final int accountId;
private final int parentId;
private final String summary;
private final Set children;
private final Set blockDevices;
@ConstructorProperties({ "id", "name", "globalIdentifier", "statusId", "accountId", "parentId", "summary",
"children", "blockDevices" })
protected VirtualGuestBlockDeviceTemplateGroup(int id, @Nullable String name, @Nullable String globalIdentifier,
int statusId, int accountId, int parentId, @Nullable String summary,
@Nullable Set children,
@Nullable Set blockDevices) {
this.id = id;
this.name = name;
this.globalIdentifier = globalIdentifier;
this.statusId = statusId;
this.accountId = accountId;
this.parentId = parentId;
this.summary = summary;
this.children = children == null ? ImmutableSet.of() :
ImmutableSet.copyOf(children);
this.blockDevices = blockDevices == null ? ImmutableSet.of() :
ImmutableSet.copyOf(blockDevices);
}
public int getId() {
return id;
}
public String getName() {
return name;
}
public String getGlobalIdentifier() {
return globalIdentifier;
}
public int getStatusId() {
return statusId;
}
public int getAccountId() {
return accountId;
}
public int getParentId() {
return parentId;
}
public String getSummary() {
return summary;
}
public Set getChildren() {
return children;
}
public Set getBlockDevices() {
return blockDevices;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
VirtualGuestBlockDeviceTemplateGroup that = (VirtualGuestBlockDeviceTemplateGroup) o;
return Objects.equal(this.id, that.id) &&
Objects.equal(this.name, that.name) &&
Objects.equal(this.globalIdentifier, that.globalIdentifier) &&
Objects.equal(this.statusId, that.statusId) &&
Objects.equal(this.accountId, that.accountId) &&
Objects.equal(this.parentId, that.parentId) &&
Objects.equal(this.summary, that.summary) &&
Objects.equal(this.children, that.children) &&
Objects.equal(this.blockDevices, that.blockDevices);
}
@Override
public int hashCode() {
return Objects.hashCode(id, name, globalIdentifier, statusId, accountId, parentId, summary, children,
blockDevices);
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("id", id)
.add("name", name)
.add("globalIdentifier", globalIdentifier)
.add("statusId", statusId)
.add("accountId", accountId)
.add("parentId", parentId)
.add("summary", summary)
.add("children", children)
.add("blockDevices", blockDevices)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy