Interface Service
- All Known Implementing Classes:
InsertService
,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 TypeMethodDescriptionvoid
execute
(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
-