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

artoria.io.oss.OssObject Maven / Gradle / Ivy

The newest version!
package artoria.io.oss;

import java.io.InputStream;

/**
 * The object data in the object storage service.
 * @author Kahle
 */
public interface OssObject extends OssBase {

    /**
     * Get the metadata.
     * @return The metadata
     */
    Object getMetadata();

    /**
     * Get the object content.
     * @return The object content
     */
    InputStream getObjectContent();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy