blob: 611682e2e0205ddf7325bb89a936705ebe922de5 [file] [log] [blame]
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds 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 com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Strings.emptyToNull;
/**
* A region is made up of a keyname and a description of that region.
* A region keyname can be used as part of an order.
* Check the SoftLayer_Product_Order service for more details.
*
* @author Jason King
* @see <a href= "http://sldn.softlayer.com/reference/datatypes/SoftLayer_Location_Region"
* />
*/
public class Region implements Comparable<Region> {
public static Builder builder() {
return new Builder();
}
public static class Builder {
private String keyname;
private String description;
public Builder keyname(String keyname) {
this.keyname = keyname;
return this;
}
public Builder description(String description) {
this.description = description;
return this;
}
public Region build() {
return new Region(keyname, description);
}
public static Builder fromAddress(Region in) {
return Region.builder().keyname(in.getKeyname())
.description(in.getDescription());
}
}
/* An integer representing the order in which this element is displayed */
private int sortOrder = 0;
private String keyname;
private String description;
// for deserializer
Region() {
}
public Region(String keyname, String description) {
this.keyname = checkNotNull(emptyToNull(keyname),"keyname cannot be null or empty:"+keyname);
this.description = checkNotNull(emptyToNull(description),"country cannot be null or empty:"+description);
}
@Override
public int compareTo(Region arg0) {
return Integer.valueOf(sortOrder).compareTo(arg0.sortOrder);
}
/**
* @return A unique key name for a region. Provided for easy debugging. This is to be sent in with an order.
*/
public String getKeyname() {
return keyname;
}
/**
* @return A short description of a region's name. This description is seen on the order forms.
*/
public String getDescription() {
return description;
}
public Builder toBuilder() {
return Builder.fromAddress(this);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Region region = (Region) o;
if (sortOrder != region.sortOrder) return false;
if (!description.equals(region.description)) return false;
if (!keyname.equals(region.keyname)) return false;
return true;
}
@Override
public int hashCode() {
int result = sortOrder;
result = 31 * result + keyname.hashCode();
result = 31 * result + description.hashCode();
return result;
}
@Override
public String toString() {
return "[keyname=" + keyname + ", description=" + description + "]";
}
}