Package org.eclipse.cbi.maven.http
Interface HttpResult
-
public interface HttpResult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CharsetcontentCharset()longcontentLength()longcopyContent(OutputStream output)longcopyContent(Path target, CopyOption... options)Stringreason()intstatusCode()
-
-
-
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()
-
-