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.CharsetcontentCharset()longcontentLength()longcopyContent(java.io.OutputStream output)longcopyContent(java.nio.file.Path target, java.nio.file.CopyOption... options)java.lang.Stringreason()intstatusCode()
-
-
-
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()
-
-