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

com.yy.androidlib.util.http.FileDataFormEntry Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
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