org.jboss.resteasy.plugins.providers.multipart.MultipartInput Maven / Gradle / Ivy
package org.jboss.resteasy.plugins.providers.multipart;
import java.util.List;
/**
* @author Bill Burke
* @version $Revision: 1 $
*/
public interface MultipartInput {
List getParts();
String getPreamble();
/**
* Call this method to delete any temporary files created from unmarshalling this multipart message
* Otherwise they will be deleted on Garbage Collection or JVM exit.
*/
void close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy