/** * ============================================================================= * * 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. * * ============================================================================= */ package org.orcid.jaxb.model.record_rc2; import io.swagger.annotations.ApiModelProperty; 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_rc2.CreatedDate; import org.orcid.jaxb.model.common_rc2.Filterable; import org.orcid.jaxb.model.common_rc2.LastModifiedDate; import org.orcid.jaxb.model.common_rc2.Source; import org.orcid.jaxb.model.common_rc2.Visibility; import org.orcid.jaxb.model.common_rc2.VisibilityType; /** * * @author Angel Montenegro * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(propOrder = { "createdDate", "lastModifiedDate", "source", "content" }) @XmlRootElement(name = "other-name", namespace = "http://www.orcid.org/ns/other-name") public class OtherName implements VisibilityType, Filterable, Serializable, Comparable<OtherName>, SourceAware { private static final long serialVersionUID = 1047027166285177589L; @XmlElement(name = "content", namespace = "http://www.orcid.org/ns/other-name") protected String content; @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 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 Visibility getVisibility() { return visibility; } public void setVisibility(Visibility visibility) { this.visibility = visibility; } 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 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 + ((path == null) ? 0 : path.hashCode()); result = prime * result + ((content == null) ? 0 : content.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; OtherName other = (OtherName) obj; if (path == null) { if (other.path != null) return false; } else if (!path.equals(other.path)) return false; if (content == null) { if (other.content != null) return false; } else if (!content.equals(other.content)) return false; if (visibility != other.visibility) return false; return true; } @Override public String retrieveSourcePath() { if (source != null) { return source.retrieveSourcePath(); } return null; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } @Override public int compareTo(OtherName o) { if(o == null || o.getContent() == null) { return 1; } if(getContent() == null) { return -1; } return this.getContent().compareTo(o.getContent()); } }