Example usage for org.apache.commons.httpclient.methods.multipart FilePart subclass-usage

List of usage examples for org.apache.commons.httpclient.methods.multipart FilePart subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.httpclient.methods.multipart FilePart subclass-usage.

Usage

From source file org.eclipse.mylyn.internal.bugzilla.core.BugzillaFilePart.java

public class BugzillaFilePart extends FilePart {

    private final String filename;

    public BugzillaFilePart(AbstractTaskAttachmentSource source, String filename, String contentType,
            String charset) {

From source file org.apache.jackrabbit.spi2davex.BinaryPart.java

/**
 * <code>BinaryPart</code> extends from the default HttpClient 3.x
 * FilePart and sends the name/filename in the Content Disposition header
 * with the specified charset.
 *
 * TODO: This class can be removed once we upgrade to HttpClient 4.x (JCR-2406)

From source file lucee.commons.net.http.httpclient3.ResourcePart.java

public class ResourcePart extends FilePart {
    protected static final String FILE_NAME = "; filename=";

    /** Attachment's file name as a byte array */
    private static final byte[] FILE_NAME_BYTES = EncodingUtil.getAsciiBytes(FILE_NAME);

From source file greenfoot.export.mygame.ProgressTrackingPart.java

/**
 * A FilePart which tracks upload progress.
 * 
 * @author Davin McCall
 */
public class ProgressTrackingPart extends FilePart {

From source file org.pmedv.core.util.CustomizableFilePart.java

public class CustomizableFilePart extends FilePart {

    private static final Log log = LogFactory.getLog(FilePart.class);

    private UploadMonitor uploadMonitor;

From source file ome.formats.importer.util.ErrorFilePart.java

/**
 * @author Brian Loranger brain at lifesci.dundee.ac.uk
 * @author Chris Allan <callan@glencoesoftware.com>
 *
 */
public class ErrorFilePart extends FilePart {

From source file org.openmicroscopy.shoola.svc.proxy.SubmittedFilePart.java

/** 
 * Extends the <code>FilePart</code> so we can read chunck of the file.
 *
 * @author Jean-Marie Burel &nbsp;&nbsp;&nbsp;&nbsp;
 * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a>
 * @since Beta4.4

From source file org.scohen.juploadr.event.MonitorFilePart.java

/**
 * @author steve
 * 
 */
public class MonitorFilePart extends FilePart {
    private List<UploadStatusMonitor> listeners;

From source file at.gv.egiz.bku.binding.multipart.SLResultPart.java

public class SLResultPart extends FilePart {

    protected SLResult slResult;
    protected String encoding;

    public SLResultPart(SLResult slResult, String encoding) {