/* * Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved. * http://community.jaspersoft.com/project/mobile-sdk-android * * Unless you have purchased a commercial license agreement from TIBCO Jaspersoft, * the following license terms apply: * * This program is part of TIBCO Jaspersoft Mobile SDK for Android. * * TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * TIBCO Jaspersoft Mobile SDK 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with TIBCO Jaspersoft Mobile SDK for Android. If not, see * <http://www.gnu.org/licenses/lgpl>. */ package com.jaspersoft.android.sdk.network.entity.report.option; import com.google.gson.annotations.Expose; import org.jetbrains.annotations.NotNull; /** * @author Tom Koptel * @since 2.3 */ public class ReportOptionEntity { @Expose private String uri; @Expose private String id; @Expose private String label; @NotNull public String getId() { return id; } @NotNull public String getLabel() { return label; } @NotNull public String getUri() { return uri; } @Override public final boolean equals(Object o) { if (this == o) return true; if (!(o instanceof ReportOptionEntity)) return false; ReportOptionEntity that = (ReportOptionEntity) o; if (id != null ? !id.equals(that.id) : that.id != null) return false; if (label != null ? !label.equals(that.label) : that.label != null) return false; if (uri != null ? !uri.equals(that.uri) : that.uri != null) return false; return true; } @Override public final int hashCode() { int result = uri != null ? uri.hashCode() : 0; result = 31 * result + (id != null ? id.hashCode() : 0); result = 31 * result + (label != null ? label.hashCode() : 0); return result; } @Override public String toString() { return "ReportOption{" + "id='" + id + '\'' + ", uri='" + uri + '\'' + ", label='" + label + '\'' + '}'; } }