Java tutorial
/* * Copyright (C) 2016 Hobrasoft s.r.o. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package cz.hobrasoft.pdfmu.jackson; import com.fasterxml.jackson.annotation.JsonPropertyDescription; import java.util.List; import java.util.Objects; /** * * @author <a href="mailto:filip.bartek@hobrasoft.cz">Filip Bartek</a> */ public class SignatureDisplay extends Result { @JsonPropertyDescription("Number of revisions of the document") public Integer nRevisions; @JsonPropertyDescription("Signatures") public List<Signature> signatures; @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final SignatureDisplay other = (SignatureDisplay) obj; if (!Objects.equals(this.nRevisions, other.nRevisions)) { return false; } if (!Objects.equals(this.signatures, other.signatures)) { return false; } return true; } }