/* Copyright (C) 2005-2012, by the President and Fellows of Harvard College. Licensed 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. Dataverse Network - A web application to share, preserve and analyze research data. Developed at the Institute for Quantitative Social Science, Harvard University. Version 3.0. */ /* * StudyKeyword.java * * Created on August 7, 2006, 9:54 AM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package edu.harvard.iq.dvn.core.study; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.*; /** * * @author Ellen Kraffmiller */ @Entity public class StudyProducer implements java.io.Serializable, MetadataFieldGroup { /** Creates a new instance of StudyKeyword */ public StudyProducer() { } /** * Holds value of property id. */ @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; /** * Getter for property id. * @return Value of property id. */ public Long getId() { return this.id; } /** * Setter for property id. * @param id New value of property id. */ public void setId(Long id) { this.id = id; } /** * Holds value of property displayOrder. */ private int displayOrder; /** * Getter for property order. * @return Value of property order. */ public int getDisplayOrder() { return this.displayOrder; } /** * Setter for property order. * @param order New value of property order. */ public void setDisplayOrder(int displayOrder) { this.displayOrder = displayOrder; } /** * Holds value of property name. */ private String name; /** * Getter for property value. * @return Value of property value. */ public String getName() { return this.name; } /** * Setter for property value. * @param value New value of property value. */ public void setName(String name) { this.name = name; } /** * Holds value of property version. */ @Version private Long version; /** * Getter for property version. * @return Value of property version. */ public Long getVersion() { return this.version; } /** * Setter for property version. * @param version New value of property version. */ public void setVersion(Long version) { this.version = version; } /** * Holds value of property url. */ private String url; /** * Getter for property url. * @return Value of property url. */ public String getUrl() { return this.url; } /** * Setter for property url. * @param url New value of property url. */ public void setUrl(String url) { this.url = url; } /** * Holds value of property logo. */ private String logo; /** * Getter for property logo. * @return Value of property logo. */ public String getLogo() { return this.logo; } /** * Setter for property logo. * @param logo New value of property logo. */ public void setLogo(String logo) { this.logo = logo; } /** * Holds value of property abbreviation. */ private String abbreviation; /** * Getter for property abbreviation. * @return Value of property abbreviation. */ public String getAbbreviation() { return this.abbreviation; } /** * Setter for property abbreviation. * @param abbreviation New value of property abbreviation. */ public void setAbbreviation(String abbreviation) { this.abbreviation = abbreviation; } /** * Holds value of property affiliation. */ private String affiliation; /** * Getter for property affiliation. * @return Value of property affiliation. */ public String getAffiliation() { return this.affiliation; } /** * Setter for property affiliation. * @param affiliation New value of property affiliation. */ public void setAffiliation(String affiliation) { this.affiliation = affiliation; } /** * Holds value of property metadata. */ @ManyToOne @JoinColumn(nullable=false) private Metadata metadata; public Metadata getMetadata() { return metadata; } public void setMetadata(Metadata metadata) { this.metadata = metadata; } public boolean isEmpty() { return ((abbreviation==null || abbreviation.trim().equals("")) && (affiliation==null || affiliation.trim().equals("")) && (logo==null || logo.trim().equals("")) && (name==null || name.trim().equals("")) && (url==null || url.trim().equals(""))); } public int hashCode() { int hash = 0; hash += (this.id != null ? this.id.hashCode() : 0); return hash; } public boolean equals(Object object) { // TODO: Warning - this method won't work in the case the id fields are not set if (!(object instanceof StudyProducer)) { return false; } StudyProducer other = (StudyProducer)object; if (this.id != other.id && (this.id == null || !this.id.equals(other.id))) return false; return true; } }