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

com.enonic.xp.web.multipart.MultipartForm Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.web.multipart;

public interface MultipartForm
    extends Iterable
{
    boolean isEmpty();

    int getSize();

    MultipartItem get( String name );

    MultipartItem get( String name, int index );

    String getAsString( String name );

    void delete();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy