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

org.jboss.resteasy.plugins.providers.multipart.MultipartInput Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha4
Show newest version
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