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
Modifier and TypeMethodDescriptionvoid
processRequest
(UserServiceGetContext aGetContext, UserServiceGetResponse aGetResponse) Processes the GET request and writes the response.
-
Method Details
-
processRequest
Processes the GET request and writes the response.- Parameters:
aGetContext
- provides information on the request.aGetResponse
- the object to use to generate the response.
-