org.rundeck.storage.api.ContentMeta Maven / Gradle / Ivy
package org.rundeck.storage.api;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Map;
/**
* Represents a stream of data to store and metadata about it.
*/
public interface ContentMeta extends HasInputStream{
/**
* Return the metadata about the content
* @return the metadata
*/
Map getMeta();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy