Package org.eclipse.cbi.maven.http
Interface HttpResult
-
public interface HttpResult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Charset
contentCharset()
long
contentLength()
long
copyContent(OutputStream output)
long
copyContent(Path target, CopyOption... options)
String
reason()
int
statusCode()
-
-
-
Method Detail
-
statusCode
int statusCode()
-
reason
String reason()
-
copyContent
long copyContent(Path target, CopyOption... options) throws IOException
- Throws:
IOException
-
copyContent
long copyContent(OutputStream output) throws IOException
- Throws:
IOException
-
contentLength
long contentLength()
-
contentCharset
Charset contentCharset()
-
-