com.paypal.http.multipart.FormPart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.commerce.payment.method.paypal
Show all versions of com.liferay.commerce.payment.method.paypal
Liferay Commerce Payment Method PayPal
The newest version!
package com.paypal.http.multipart;
import java.io.IOException;
import java.io.OutputStream;
import static com.paypal.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 - 2025 Weber Informatics LLC | Privacy Policy