blob: d5e7134da70e7670ef1a6b13fe93d7fd6417febb [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.cloudstack.domain;
import java.util.Date;
import com.google.common.base.Objects;
import com.google.gson.annotations.SerializedName;
/**
* @author Richard Downer
*/
public class VMGroup implements Comparable<VMGroup> {
public static Builder builder() {
return new Builder();
}
public static class Builder {
private String id;
private String account;
private Date created;
private String domain;
private String domainId;
private String name;
public Builder id(String id) {
this.id = id;
return this;
}
public Builder account(String account) {
this.account = account;
return this;
}
public Builder created(Date created) {
this.created = created;
return this;
}
public Builder domain(String domain) {
this.domain = domain;
return this;
}
public Builder domainId(String domainId) {
this.domainId = domainId;
return this;
}
public Builder name(String name) {
this.name = name;
return this;
}
public VMGroup build() {
return new VMGroup(id, account, created, domain, domainId, name);
}
}
private String id;
private String account;
private Date created;
private String domain;
@SerializedName("domainid")
private String domainId;
private String name;
public VMGroup(String id, String account, Date created, String domain, String domainId, String name) {
this.id = id;
this.account = account;
this.created = created;
this.domain = domain;
this.domainId = domainId;
this.name = name;
}
/**
* present only for serializer
*/
VMGroup() {
}
/**
* @return the VMGroup's ID
*/
public String getId() {
return id;
}
/**
* @return the account that owns the VMGroup
*/
public String getAccount() {
return account;
}
/**
* @return the VMGroup's creation timestamp
*/
public Date getCreated() {
return created;
}
/**
* @return the domain that contains the VMGroup
*/
public String getDomain() {
return domain;
}
/**
* @return the ID of the domain that contains the VMGroup
*/
public String getDomainId() {
return domainId;
}
/**
* @return the name of the VMGroup
*/
public String getName() {
return name;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
VMGroup that = (VMGroup) o;
if (!Objects.equal(domainId, that.domainId)) return false;
if (!Objects.equal(id, that.id)) return false;
if (!Objects.equal(account, that.account)) return false;
if (!Objects.equal(created, that.created)) return false;
if (!Objects.equal(domain, that.domain)) return false;
if (!Objects.equal(name, that.name)) return false;
return true;
}
@Override
public int hashCode() {
return Objects.hashCode(domainId, id, account, created, domain, name);
}
@Override
public String toString() {
return "VMGroup{" +
"id=" + id +
", account='" + account + '\'' +
", created=" + created +
", domain='" + domain + '\'' +
", domainId=" + domainId +
", name='" + name + '\'' +
'}';
}
@Override
public int compareTo(VMGroup vmGroup) {
return id.compareTo(vmGroup.getId());
}
}