RequestBody.java

/*
 * Decompiled with CFR 0_132.
 */
package org.xutils.http.body;

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

public interface RequestBody {
    public long getContentLength();

    public void setContentType(String var1);

    public String getContentType();

    public void writeTo(OutputStream var1) throws IOException;
}