![JAR search and dependency download from the Maven repository](/logo.png)
com.yy.androidlib.util.http.FileDataFormEntry Maven / Gradle / Ivy
package com.yy.androidlib.util.http;
/**
* User: lxl
* Date: 10/29/14
* Time: 10:00 AM
*/
public class FileDataFormEntry extends FormEntry {
public byte[] byteValue;
public FileDataFormEntry(String name, byte[] byteValue) {
super(Type.FileData, name, "");
this.byteValue = byteValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy