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

no.ks.fiks.io.asice.model.Content Maven / Gradle / Ivy

The newest version!
package no.ks.fiks.io.asice.model;

import java.io.InputStream;

/**
 * Represents a file in an asic-e package
 */
public interface Content {
    /**
     * @return the filename of the file
     */
    String getFilnavn();

    /**
     * @return the contents an inputstream
     */
    InputStream getPayload();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy