Started implementation of http multiform

This commit is contained in:
Ziver Koc 2016-07-06 17:36:57 +02:00
parent 765063ae47
commit 5cffdc49d1
5 changed files with 361 additions and 206 deletions

View file

@ -0,0 +1,24 @@
package zutil.net.http.multipart;
import java.io.InputStream;
/**
* Created by ezivkoc on 2016-07-06.
*/
public class MultipartStringField implements MultipartField {
private String value;
@Override
public long getLength() {
return 0;
}
@Override
public String getName() {
return null;
}
public String getValue() {
return value;
}
}