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

org.jboss.resteasy.reactive.multipart.FileUpload Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package org.jboss.resteasy.reactive.multipart;

import java.nio.file.Path;

/**
 * Represent a file that has been uploaded.
 * 

* This type is usually used on server, but it is also supported in the REST Client. */ public interface FileUpload extends FilePart { /** * Use this constant as form parameter name in order to get all file uploads from a multipart form, regardless of their * names */ public final static String ALL = "*"; default Path uploadedFile() { return filePath(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy