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

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

Introduction

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

Usage

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

public class LuceeStringPart extends StringPart {

    private String value;

    public LuceeStringPart(String name, String value) {
        super(name, value);

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

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