
org.jclouds.softlayer.domain.OperatingSystem 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;
/**
* Extends the SoftLayer_Software_Component data type to include operating system specific properties.
*
* @see
*/
public class OperatingSystem {
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return builder().fromOperatingSystem(this);
}
public static class Builder {
protected String id;
protected SoftwareLicense softwareLicense;
protected String operatingSystemReferenceCode;
protected Set passwords = ImmutableSet.of();
/**
* @see OperatingSystem#getId()
*/
public Builder id(String id) {
this.id = id;
return this;
}
/**
* @see OperatingSystem#getSoftwareLicense()
*/
public Builder softwareLicense(SoftwareLicense softwareLicense) {
this.softwareLicense = softwareLicense;
return this;
}
/**
* @see org.jclouds.softlayer.domain.OperatingSystem#getOperatingSystemReferenceCode()
*/
public Builder operatingSystemReferenceCode(String operatingSystemReferenceCode) {
this.operatingSystemReferenceCode = operatingSystemReferenceCode;
return this;
}
/**
* @see OperatingSystem#getPasswords()
*/
public Builder passwords(Set passwords) {
this.passwords = ImmutableSet.copyOf(checkNotNull(passwords, "passwords"));
return this;
}
public Builder passwords(Password... in) {
return passwords(ImmutableSet.copyOf(in));
}
public OperatingSystem build() {
return new OperatingSystem(id, softwareLicense, operatingSystemReferenceCode, passwords);
}
public Builder fromOperatingSystem(OperatingSystem in) {
return this.id(in.getId()).passwords(in.getPasswords());
}
}
private final String id;
private final SoftwareLicense softwareLicense;
private final String operatingSystemReferenceCode;
private final Set passwords;
@ConstructorProperties({
"id", "softwareLicense", "operatingSystemReferenceCode", "passwords"
})
protected OperatingSystem(String id, @Nullable SoftwareLicense softwareLicense,
@Nullable String operatingSystemReferenceCode, @Nullable Set passwords) {
this.id = checkNotNull(id, "id");
this.softwareLicense = softwareLicense;
this.operatingSystemReferenceCode = operatingSystemReferenceCode;
this.passwords = passwords == null ? ImmutableSet.of() : ImmutableSet.copyOf(passwords);
}
/**
* @return An ID number identifying this Software Component (Software Installation)
*/
public String getId() {
return this.id;
}
public SoftwareLicense getSoftwareLicense() {
return softwareLicense;
}
public String getOperatingSystemReferenceCode() {
return operatingSystemReferenceCode;
}
/**
* @return Username/Password pairs used for access to this Software Installation.
*/
public Set getPasswords() {
return this.passwords;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
OperatingSystem that = (OperatingSystem) o;
return Objects.equal(this.id, that.id) &&
Objects.equal(this.softwareLicense, that.softwareLicense) &&
Objects.equal(this.operatingSystemReferenceCode, that.operatingSystemReferenceCode) &&
Objects.equal(this.passwords, that.passwords);
}
@Override
public int hashCode() {
return Objects.hashCode(id, softwareLicense, operatingSystemReferenceCode, passwords);
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("id", id)
.add("softwareLicense", softwareLicense)
.add("operatingSystemReferenceCode", operatingSystemReferenceCode)
.add("passwords", passwords)
.toString();
}
}