Expose the numeric code of the Response.StatusCode #473 (#474)

* Expose the numeric code of the Response.StatusCode #473

* Expose the numeric code of the Response.StatusCode #473
This commit is contained in:
Andremoniy
2018-11-27 10:22:00 +01:00
committed by Jeroen van Erp
parent b0dee02bf9
commit e14fb2f695
2 changed files with 64 additions and 0 deletions

View File

@@ -68,6 +68,9 @@ public final class Response
this.code = code;
}
public int getCode() {
return code;
}
}
private final int protocolVersion;