Interface UserServiceGetRequest
-
public interface UserServiceGetRequest
Interface that a GET request callback must implement. This callback can be used to implement file downloads or render non HTML data such as images.- Since:
- 5.8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processRequest(UserServiceGetContext aGetContext, UserServiceGetResponse aGetResponse)
Processes the GET request and writes the response.
-
-
-
Method Detail
-
processRequest
void processRequest(UserServiceGetContext aGetContext, UserServiceGetResponse aGetResponse)
Processes the GET request and writes the response.- Parameters:
aGetContext
- provides information on the request.aGetResponse
- the object to use to generate the response.
-
-