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

play.data.Upload Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package play.data;

import java.io.InputStream;
import java.io.File;

public interface Upload {

    public byte[] asBytes();
    public InputStream asStream();
    public String getContentType();
    public String getFileName();
    public String getFieldName();
    public Long getSize();
    public boolean isInMemory();
    public File asFile();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy