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

com.foxinmy.weixin4j.http.entity.HttpEntity Maven / Gradle / Ivy

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