In the Rest API design, I am wondering what the exact purpose of the context annotation?
private HttpServletRequest request;
@Context
public void setRequest(final HttpServletRequest req) {
request = req;
}
|
|
|
The purpose is to indicate that the
API docs (Not horribly useful IMO. Or, perhaps more accurately, horribly-useful.) |
|||
|
|