Example usage for org.apache.http.entity.mime MultipartEntity subclass-usage

List of usage examples for org.apache.http.entity.mime MultipartEntity subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.entity.mime MultipartEntity subclass-usage.

Usage

From source file net.evecom.android.util.CustomMultipartEntity.java

/**
 * 
 * CustomMultipartEntity
 * @author Mars zhang
 * @created 2014-11-5 10:46:01
 */

From source file com.reelfx.model.util.CountingMultipartEntity.java

/**
 * Implemented so I can maintain a progress bar while uploading a screen capture.  Based on discussion from here:
 * http://stackoverflow.com/questions/254719/file-upload-with-java-with-progress-bar/3154929
 * http://stackoverflow.com/questions/3163131/how-to-properly-extend-java-filteroutputstream-class
 * 
 * @author Daniel Dixon (http://www.danieldixon.com)

From source file net.netheos.pcsapi.request.MultipartRelatedEntity.java

/**
 *
 */
public class MultipartRelatedEntity extends MultipartEntity {

    @Override

From source file io.github.data4all.util.upload.MultiCallbackEntry.java

/**
 * A custom MultipartEntity which encapsulates the {@link OutputStream} with a
 * {@link CallbackOutputStream} to provide a callback for the progress of
 * reading from its String content.
 * 
 * @author tbrose, fkirchge

From source file it.restrung.rest.misc.CountingMultipartEntity.java

/**
 * An implementation of MultipartEntity entity that allows the caller to get upload progress
 */
public class CountingMultipartEntity extends MultipartEntity {

    /**

From source file net.netheos.pcsapi.request.CloudMeMultipartEntity.java

/**
 * CloudMe does not support charset in content-type multi part upload.
 */
public class CloudMeMultipartEntity extends MultipartEntity {

    public CloudMeMultipartEntity() {

From source file com.ad.mediasharing.ADCustomMultiPartEntity.java

/*******************************************************************************
 * Copyright 2014 Adnan Urooj (Deminem)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

From source file com.putlocker.upload.http.post.CountingMultipartEntity.java

public class CountingMultipartEntity extends MultipartEntity {
    private final ProgressListener listener;

    public CountingMultipartEntity(final ProgressListener listener) {
        super();
        this.listener = listener;

From source file com.stepsdk.android.http.CountingMultipartEntity.java

public class CountingMultipartEntity extends MultipartEntity {

    private final ProgressListener listener;
    private boolean mInterrupt = false;

    public CountingMultipartEntity(final ProgressListener listener) {

From source file nz.net.catalyst.MaharaDroid.upload.http.MultipartEntityMonitored.java

public class MultipartEntityMonitored extends MultipartEntity {
    static final String TAG = LogConfig.getLogTag(MultipartEntityMonitored.class);
    // whether DEBUG level logging is enabled (whether globally, or explicitly
    // for this log tag)
    static final boolean DEBUG = LogConfig.isDebug(TAG);
    // whether VERBOSE level logging is enabled