001package org.kuali.ole.pojo.bib; 002 003import org.kuali.ole.docstore.model.xmlpojo.work.bib.marc.ControlField; 004import org.kuali.ole.docstore.model.xmlpojo.work.bib.marc.DataField; 005import org.kuali.ole.docstore.model.xmlpojo.work.bib.marc.LeaderTag; 006 007import java.util.ArrayList; 008import java.util.List; 009 010/** 011 * Created by IntelliJ IDEA. 012 * User: pvsubrah 013 * Date: 4/2/12 014 * Time: 3:49 PM 015 * To change this template use File | Settings | File Templates. 016 */ 017public class BibliographicRecord { 018 private LeaderTag leader = new LeaderTag(); 019 private List<ControlField> controlfields = new ArrayList<ControlField>(); 020 private List<DataField> datafields = new ArrayList<DataField>(); 021 022 public String getLeader() { 023 return leader.getValue(); 024 } 025 026 public void setLeader(String leader) { 027 this.leader.setValue(leader); 028 } 029 030 public List<ControlField> getControlfields() { 031 return controlfields; 032 } 033 034 public List<DataField> getDatafields() { 035 return datafields; 036 } 037 038 public void setDatafields(List<DataField> datafields) { 039 this.datafields = datafields; 040 } 041 042 public void addDataField(DataField dataField) { 043 if (null != datafields && !this.datafields.contains(dataField)) { 044 this.datafields.add(dataField); 045 } 046 } 047 048 public void setControlfields(List<ControlField> controlfields) { 049 this.controlfields = controlfields; 050 } 051 052 public String getRecordId() { 053 for (ControlField cf : controlfields) { 054 if (cf.getTag().equals("001")) { 055 return cf.getValue(); 056 } 057 } 058 return ""; 059 } 060 061 @Override 062 public boolean equals(Object object) { 063 if (this == object) return true; 064 if (object == null || getClass() != object.getClass()) return false; 065 066 BibliographicRecord that = (BibliographicRecord) object; 067 068 if (leader != null ? !leader.equals(that.leader) : that.leader != null) return false; 069 if (controlfields != null ? !controlfields.equals(that.controlfields) : that.controlfields != null) 070 return false; 071 if (datafields != null ? !datafields.equals(that.datafields) : that.datafields != null) return false; 072 073 return true; 074 } 075 076 @Override 077 public int hashCode() { 078 int result = leader != null ? leader.hashCode() : 0; 079 result = 31 * result + (controlfields != null ? controlfields.hashCode() : 0); 080 result = 31 * result + (datafields != null ? datafields.hashCode() : 0); 081 return result; 082 } 083}