org.jclouds.cloudsigma2.domain.IPInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudsigma2 Show documentation
Show all versions of cloudsigma2 Show documentation
ComputeService binding to the CloudSigma v2 API
/*
* 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.cloudsigma2.domain;
import com.google.common.collect.ImmutableList;
import java.beans.ConstructorProperties;
import java.net.URI;
import java.util.List;
import java.util.Map;
public class IPInfo extends IP {
public static class Builder extends IP.Builder {
private Map meta;
private Subscription subscription;
private List tags;
private List nameservers;
private int netmask;
private String gateway;
/**
* @param meta User defined meta information
* @return IPInfo Builder
*/
public Builder meta(Map meta) {
this.meta = meta;
return this;
}
/**
* @param subscription Subscription related to this VLAN
* @return IPInfo Builder
*/
public Builder subscription(Subscription subscription) {
this.subscription = subscription;
return this;
}
/**
* @param tags Tags added to this VLAN
* @return IPInfo Builder
*/
public Builder tags(List tags) {
this.tags = ImmutableList.copyOf(tags);
return this;
}
/**
* @param nameservers Servers added to this IP
* @return IPInfo Builder
*/
public Builder nameservers(List nameservers) {
this.nameservers = ImmutableList.copyOf(nameservers);
return this;
}
/**
* @param netmask IP netmask
* @return IPInfo Builder
*/
public Builder netmask(int netmask) {
this.netmask = netmask;
return this;
}
/**
* @param gateway getaway
* @return IPInfo Builder
*/
public Builder gateway(String gateway) {
this.gateway = gateway;
return this;
}
/**
* {@inheritDoc}
*
* @return IPInfo Builder
*/
@Override
public Builder uuid(String uuid) {
return Builder.class.cast(super.uuid(uuid));
}
/**
* {@inheritDoc}
*
* @return IPInfo Builder
*/
@Override
public Builder owner(Owner owner) {
return Builder.class.cast(super.owner(owner));
}
/**
* {@inheritDoc}
*
* @return IPInfo Builder
*/
@Override
public Builder server(Server server) {
return Builder.class.cast(super.server(server));
}
/**
* {@inheritDoc}
*
* @return IPInfo Builder
*/
@Override
public Builder resourceUri(URI resourceUri) {
return Builder.class.cast(super.resourceUri(resourceUri));
}
public IPInfo build() {
return new IPInfo(uuid, owner, server, resourceUri, meta, subscription, tags, nameservers, netmask, gateway);
}
public Builder fromIP(IP ip) {
return new Builder()
.uuid(ip.getUuid())
.owner(ip.getOwner())
.server(ip.getServer())
.resourceUri(ip.getResourceUri());
}
}
private final Map meta;
private final Subscription subscription;
private final List tags;
private final List nameservers;
private final int netmask;
private final String gateway;
@ConstructorProperties({
"uuid", "owner", "server", "resource_uri", "meta", "subscription",
"tags", "nameservers", "netmask", "gateway"
})
public IPInfo(String uuid, Owner owner, Server server, URI resourceUri, Map meta,
Subscription subscription, List tags, List nameservers, int netmask, String gateway) {
super(uuid, owner, server, resourceUri);
this.meta = meta;
this.subscription = subscription;
this.tags = tags;
this.nameservers = nameservers;
this.netmask = netmask;
this.gateway = gateway;
}
/**
* @return User defined meta information
*/
public Map getMeta() {
return meta;
}
/**
* @return Subscription related to this VLAN
*/
public Subscription getSubscription() {
return subscription;
}
/**
* @return Tags added to this VLAN
*/
public List getTags() {
return tags;
}
/**
* @return Servers added to this IP
*/
public List getNameservers() {
return nameservers;
}
/**
* @return IP netmask
*/
public int getNetmask() {
return netmask;
}
/**
* @return getaway
*/
public String getGateway() {
return gateway;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof IPInfo)) return false;
if (!super.equals(o)) return false;
IPInfo ipInfo = (IPInfo) o;
if (netmask != ipInfo.netmask) return false;
if (gateway != null ? !gateway.equals(ipInfo.gateway) : ipInfo.gateway != null) return false;
if (meta != null ? !meta.equals(ipInfo.meta) : ipInfo.meta != null) return false;
if (nameservers != null ? !nameservers.equals(ipInfo.nameservers) : ipInfo.nameservers != null) return false;
if (subscription != null ? !subscription.equals(ipInfo.subscription) : ipInfo.subscription != null)
return false;
if (tags != null ? !tags.equals(ipInfo.tags) : ipInfo.tags != null) return false;
return true;
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + (meta != null ? meta.hashCode() : 0);
result = 31 * result + (subscription != null ? subscription.hashCode() : 0);
result = 31 * result + (tags != null ? tags.hashCode() : 0);
result = 31 * result + (nameservers != null ? nameservers.hashCode() : 0);
result = 31 * result + netmask;
result = 31 * result + (gateway != null ? gateway.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "[" +
"owner=" + owner +
", uuid='" + uuid + '\'' +
", server=" + server +
", resourceUri=" + resourceUri +
", meta=" + meta +
", subscription=" + subscription +
", tags=" + tags +
", nameservers=" + nameservers +
", netmask=" + netmask +
", gateway='" + gateway + '\'' +
"]";
}
}