All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.belladati.sdk.dashboard.Dashboard Maven / Gradle / Ivy

Go to download

The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.

There is a newer version: 0.9.15.1
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy