storagehub-client-wrapper/src/main/java/org/gcube/common/storagehubwrapper/shared/tohl/items/FileStreamDescriptor.java

33 lines
481 B
Java

/**
*
*/
package org.gcube.common.storagehubwrapper.shared.tohl.items;
import java.io.InputStream;
/**
* The Interface FileStreamDescriptor.
*
* @author Francesco Mangiacrapa at ISTI-CNR (francesco.mangiacrapa@isti.cnr.it)
* Sep 26, 2018
*/
public interface FileStreamDescriptor {
/**
* Gets the stream.
*
* @return the stream
*/
public InputStream getStream();
/**
* Gets the file name.
*
* @return the fileName
*/
public String getFileName();
}