com.foxinmy.weixin4j.http.entity.HttpEntity Maven / Gradle / Ivy
package com.foxinmy.weixin4j.http.entity;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import com.foxinmy.weixin4j.http.ContentType;
public interface HttpEntity {
ContentType getContentType();
long getContentLength();
InputStream getContent() throws IOException;
void writeTo(OutputStream outstream) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy