tabular-data-gwt-service/src/main/java/org/gcube/portlets/user/td/gxtservice/shared/source/Source.java

28 lines
491 B
Java

package org.gcube.portlets.user.td.gxtservice.shared.source;
import java.io.Serializable;
public interface Source extends Serializable {
/**
* Returns the document type id.
* @return the document type id.
*/
public String getId();
/**
* Returns the document type name.
* @return the document type name.
*/
public String getName();
/**
* Returns the document type description.
* @return the document type description.
*/
public String getDescription();
}