Make HTTP response status default to 200.
This commit is contained in:
parent
7436ee2237
commit
2e315e21d9
1 changed files with 2 additions and 2 deletions
|
@ -49,9 +49,9 @@ public final class ResponseTrans implements Externalizable {
|
||||||
public boolean cache = true;
|
public boolean cache = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used for HTTP response code, if 0 code 200 OK will be used.
|
* Value for HTTP response code, defaults to 200 (OK).
|
||||||
*/
|
*/
|
||||||
public int status = 0;
|
public int status = 200;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used for HTTP authentication
|
* Used for HTTP authentication
|
||||||
|
|
Loading…
Add table
Reference in a new issue