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

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

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

import com.google.common.io.ByteSource;
import com.google.common.net.MediaType;

public interface MultipartItem
{
    String getName();

    String getFileName();

    MediaType getContentType();

    ByteSource getBytes();

    String getAsString();

    long getSize();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy