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

com.braintreepayments.http.multipart.FormPart Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.braintreepayments.http.multipart;

import java.io.IOException;
import java.io.OutputStream;

import static com.braintreepayments.http.serializer.StreamUtils.writeOutputStream;

public class FormPart extends FormData {

	private String value;

	public FormPart(String key, String value) {
		super(key);
		this.value = value;
	}

	@Override
	public void writeData(OutputStream os) throws IOException {
		writeOutputStream(os, value);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy