com.belladati.sdk.dataset.DataSetInfo 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.dataset;
import java.util.Date;
import com.belladati.sdk.util.ResourceInfo;
/**
* Information object about a BellaDati data set. Use this to get
* meta-information about the data set. To retrieve the report contents, call
* {@link #loadDetails()}.
*
* @author Chris Hennigfeld
*/
public interface DataSetInfo extends ResourceInfo {
/**
* Returns the associated data set's description.
*
* @return the associated data set's description, or an empty string if no
* description exists
*/
String getDescription();
/**
* Returns the name of the associated data set's owner.
*
* @return the name of the associated data set's owner
*/
String getOwnerName();
/**
* Returns the last change date of the associated data set.
*
* @return the last change date of the associated data set, or null
* if it was never changed
*/
Date getLastChange();
}