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