org.analogweb.Multipart Maven / Gradle / Ivy
The newest version!
package org.analogweb;
import java.io.InputStream;
/**
* Multiple part request.
*
* @author snowgoose
*/
public interface Multipart {
String getName();
String getResourceName();
InputStream getInputStream();
byte[] getBytes();
String getContentType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy