/** * ============================================================================= * * 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.notification.permission_rc4; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(propOrder = { "notifications" }) @XmlRootElement(name = "notifications", namespace = "http://www.orcid.org/ns/notification") public class NotificationPermissions implements Serializable { private static final long serialVersionUID = 720972206804832580L; @XmlElement(name = "notification", namespace = "http://www.orcid.org/ns/notification") private List<NotificationPermission> notifications; public List<NotificationPermission> getNotifications() { if (notifications == null) notifications = new ArrayList<>(); return notifications; } public void setNotifications(List<NotificationPermission> notifications) { this.notifications = notifications; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((notifications == null) ? 0 : notifications.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; NotificationPermissions other = (NotificationPermissions) obj; if (notifications == null) { if (other.notifications != null) return false; } else if (!notifications.equals(other.notifications)) return false; return true; } }