Interface Service
- All Known Implementing Classes:
HypermediaService,InsertService,RESTService,RoutedService,SelectService
public interface Service
Core interface for all web service implementations in the framework.
Primary implementations include: -SelectService: Retrieves and returns data (GET operations) -InsertService: Accepts and persists data (POST operations)
- Author:
- jbanes
-
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(HttpRequest request, HttpResponse response) Executes the service, processing the HTTP request and generating a response.
-
Method Details
-
execute
Executes the service, processing the HTTP request and generating a response.- Parameters:
request- The HTTP request to processresponse- The HTTP response to populate
-