tabular-data-sdmx-export-wi.../src/main/java/org/gcube/portlets/user/sdmxexportwizardtd/client/document/SDMXDocument.java

39 lines
690 B
Java

/**
*
*/
package org.gcube.portlets.user.sdmxexportwizardtd.client.document;
import java.io.Serializable;
/**
* SDMX document type interface. All SDMX document type have to implement this interface.
* @author "Giancarlo Panichi"
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public interface SDMXDocument extends Serializable {
/**
* Returns the document id.
* @return the document id.
*/
public String getId();
/**
* Returns the document name.
* @return the document name.
*/
public String getName();
/**
* Returns the document description.
* @return the document description.
*/
public String getDescription();
}