package edu.asu.spring.quadriga.domain.impl.dictionary; import java.util.Date; import edu.asu.spring.quadriga.domain.dictionary.IDictionary; import edu.asu.spring.quadriga.domain.dictionary.IDictionaryItems; import edu.asu.spring.quadriga.domain.dictionary.IItem; public class DictionaryItems implements IDictionaryItems { private IDictionary dictionary; private IItem dictionaryItem; private String createdBy; private Date createdDate; private String updatedBy; private Date updatedDate; @Override public IDictionary getDictionary() { return dictionary; } @Override public void setDictionary(IDictionary dictionary) { this.dictionary = dictionary; } @Override public IItem getDictionaryItem() { return dictionaryItem; } @Override public void setDictionaryItem(IItem dictionaryItem) { this.dictionaryItem = dictionaryItem; } @Override public String getCreatedBy() { return createdBy; } @Override public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } @Override public Date getCreatedDate() { return createdDate; } @Override public void setCreatedDate(Date createdDate) { this.createdDate = createdDate; } @Override public String getUpdatedBy() { return updatedBy; } @Override public void setUpdatedBy(String updatedBy) { this.updatedBy = updatedBy; } @Override public Date getUpdatedDate() { return updatedDate; } @Override public void setUpdatedDate(Date updatedDate) { this.updatedDate = updatedDate; } /*@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((createdBy == null) ? 0 : createdBy.hashCode()); result = prime * result + ((createdDate == null) ? 0 : createdDate.hashCode()); result = prime * result + ((dictionary == null) ? 0 : dictionary.hashCode()); result = prime * result + ((dictionaryItem == null) ? 0 : dictionaryItem.hashCode()); result = prime * result + ((updatedBy == null) ? 0 : updatedBy.hashCode()); result = prime * result + ((updatedDate == null) ? 0 : updatedDate.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; DictionaryItems other = (DictionaryItems) obj; if (createdBy == null) { if (other.createdBy != null) return false; } else if (!createdBy.equals(other.createdBy)) return false; if (createdDate == null) { if (other.createdDate != null) return false; } else if (!createdDate.equals(other.createdDate)) return false; if (dictionary == null) { if (other.dictionary != null) return false; } else if (!dictionary.equals(other.dictionary)) return false; if (dictionaryItem == null) { if (other.dictionaryItem != null) return false; } else if (!dictionaryItem.equals(other.dictionaryItem)) return false; if (updatedBy == null) { if (other.updatedBy != null) return false; } else if (!updatedBy.equals(other.updatedBy)) return false; if (updatedDate == null) { if (other.updatedDate != null) return false; } else if (!updatedDate.equals(other.updatedDate)) return false; return true; }*/ }