/** * ============================================================================= * * ORCID (R) Open Source * http://orcid.org * * Copyright (c) 2012-2014 ORCID, Inc. * Licensed under an MIT-Style License (MIT) * http://orcid.org/open-source-license * * This copyright and license information (including a link to the full license) * shall be included in its entirety in all copies or substantial portion of * the software. * * ============================================================================= */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.08.19 at 01:44:12 PM BST // package org.orcid.jaxb.model.record_rc4; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.orcid.jaxb.model.common_rc4.Country; import org.orcid.jaxb.model.common_rc4.CreatedDate; import org.orcid.jaxb.model.common_rc4.Filterable; import org.orcid.jaxb.model.common_rc4.LastModifiedDate; import org.orcid.jaxb.model.common_rc4.Source; import org.orcid.jaxb.model.common_rc4.Visibility; import io.swagger.annotations.ApiModelProperty; /** * * @author Angel Montenegro * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(propOrder = { "createdDate", "lastModifiedDate", "source", "country" }) @XmlRootElement(name = "address", namespace = "http://www.orcid.org/ns/address") public class Address implements Filterable, Serializable, Comparable<Address>, SourceAware { private final static long serialVersionUID = 1L; @XmlElement(namespace = "http://www.orcid.org/ns/address", required = true) protected Country country; @XmlElement(namespace = "http://www.orcid.org/ns/common") protected Source source; @XmlAttribute(name = "put-code") @ApiModelProperty(hidden = true) protected Long putCode; @XmlElement(namespace = "http://www.orcid.org/ns/common", name = "last-modified-date") protected LastModifiedDate lastModifiedDate; @XmlElement(namespace = "http://www.orcid.org/ns/common", name = "created-date") protected CreatedDate createdDate; @XmlAttribute protected Visibility visibility; @XmlAttribute protected String path; @XmlAttribute(name = "display-index") protected Long displayIndex; public Country getCountry() { return country; } public void setCountry(Country country) { this.country = country; } public Source getSource() { return source; } public void setSource(Source source) { this.source = source; } public Long getPutCode() { return putCode; } public void setPutCode(Long putCode) { this.putCode = putCode; } public LastModifiedDate getLastModifiedDate() { return lastModifiedDate; } public void setLastModifiedDate(LastModifiedDate lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } public CreatedDate getCreatedDate() { return createdDate; } public void setCreatedDate(CreatedDate createdDate) { this.createdDate = createdDate; } public Visibility getVisibility() { return visibility; } public void setVisibility(Visibility visibility) { this.visibility = visibility; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public Long getDisplayIndex() { return displayIndex; } public void setDisplayIndex(Long displayIndex) { this.displayIndex = displayIndex; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((country == null) ? 0 : country.hashCode()); result = prime * result + ((createdDate == null) ? 0 : createdDate.hashCode()); result = prime * result + ((lastModifiedDate == null) ? 0 : lastModifiedDate.hashCode()); result = prime * result + ((path == null) ? 0 : path.hashCode()); result = prime * result + ((putCode == null) ? 0 : putCode.hashCode()); result = prime * result + ((source == null) ? 0 : source.hashCode()); result = prime * result + ((visibility == null) ? 0 : visibility.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; Address other = (Address) obj; if (country == null) { if (other.country != null) return false; } else if (!country.equals(other.country)) return false; if (createdDate == null) { if (other.createdDate != null) return false; } else if (!createdDate.equals(other.createdDate)) return false; if (lastModifiedDate == null) { if (other.lastModifiedDate != null) return false; } else if (!lastModifiedDate.equals(other.lastModifiedDate)) return false; if (path == null) { if (other.path != null) return false; } else if (!path.equals(other.path)) return false; if (putCode == null) { if (other.putCode != null) return false; } else if (!putCode.equals(other.putCode)) return false; if (source == null) { if (other.source != null) return false; } else if (!source.equals(other.source)) return false; if (visibility != other.visibility) return false; return true; } @Override public String retrieveSourcePath() { if (source != null) { return source.retrieveSourcePath(); } return null; } @Override public int compareTo(Address o) { if(o == null || o.getCountry() == null) { return 1; } if(getCountry() == null) { return -1; } return this.getCountry().compareTo(o.getCountry()); } }