com.gooddata.md.DashboardAttachment Maven / Gradle / Ivy
/*
* Copyright (C) 2004-2017, GoodData(R) Corporation. All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
package com.gooddata.md;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.gooddata.util.GoodDataToStringBuilder;
import java.util.Arrays;
import java.util.Collection;
/**
* Attachment to {@link ScheduledMail} represents dashboard-related information for the schedule.
*/
public class DashboardAttachment extends Attachment {
private final Integer allTabs;
private final Collection tabs;
private final String executionContext;
@JsonCreator
protected DashboardAttachment(
@JsonProperty("uri") String uri,
@JsonProperty("allTabs") Integer allTabs,
@JsonProperty("executionContext") String executionContext,
@JsonProperty("tabs") String... tabs
) {
super(uri);
this.allTabs = allTabs;
this.tabs = Arrays.asList(tabs);
this.executionContext = executionContext;
}
public Integer getAllTabs() { return allTabs; }
public Collection getTabs() { return tabs; }
public String getExecutionContext() { return executionContext; }
@Override
public boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
final DashboardAttachment that = (DashboardAttachment) o;
if (getUri() != null ? !getUri().equals(that.getUri()) : that.getUri() != null) return false;
if (allTabs != null ? !allTabs.equals(that.allTabs) : that.allTabs != null) return false;
if (tabs != null ? !tabs.equals(that.tabs) : that.tabs != null) return false;
return executionContext != null ? executionContext.equals(that.executionContext) : that.executionContext == null;
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + (getUri() != null ? getUri().hashCode() : 0);
result = 31 * result + (allTabs != null ? allTabs.hashCode() : 0);
result = 31 * result + (tabs != null ? tabs.hashCode() : 0);
result = 31 * result + (executionContext != null ? executionContext.hashCode() : 0);
return result;
}
@Override
public String toString() {
return new GoodDataToStringBuilder(this).append("uri", getUri()).toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy