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

com.iprogrammerr.gentle.request.multipart.MultipartForm Maven / Gradle / Ivy

The newest version!
package com.iprogrammerr.gentle.request.multipart;

import java.util.List;

import com.iprogrammerr.gentle.request.Header;

public interface MultipartForm {

	Header header();

	String boundary();

	List parts();

	byte[] body() throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy