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

com.belladati.sdk.dataset.DataSetInfo 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.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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy