/** * ============================================================================= * * 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.summary_rc1; import org.jsoup.helper.StringUtil; import org.orcid.jaxb.model.record_rc1.GroupAble; public class PeerReviewGroupKey implements GroupAble { public static String KEY_NAME = "PEER-REVIEW"; protected String groupId; public String getGroupId() { return groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } @Override public boolean isGroupAble() { if(StringUtil.isBlank(groupId)) return false; return true; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((groupId == null) ? 0 : groupId.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; PeerReviewGroupKey other = (PeerReviewGroupKey) obj; if (groupId == null) { if (other.groupId != null) return false; } else if (!groupId.equals(other.groupId)) return false; return true; } }