com.belladati.sdk.dashboard.Dashboard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-api Show documentation
Show all versions of sdk-api Show documentation
The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.
package com.belladati.sdk.dashboard;
import java.util.Date;
import java.util.List;
import com.belladati.sdk.util.Resource;
/**
* A BellaDati dashboard. A dashboard holds a list of {@link Dashlet} objects
* that are loaded as part of the dashboard.
*
* @author Chris Hennigfeld
*/
public interface Dashboard extends Resource {
/**
* Returns the last change date of this dashboard.
*
* @return the last change date of this dashboard, or null if it
* was never changed
*/
Date getLastChange();
/**
* Returns a list of dashlets in this dashboard.
*
* @return a list of dashlets in this dashboard
*/
List getDashlets();
}