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 Type
    Method
    Description
    void
    execute(HttpRequest request, HttpResponse response)
    Executes the service, processing the HTTP request and generating a response.
  • Method Details

    • execute

      void execute(HttpRequest request, HttpResponse response)
      Executes the service, processing the HTTP request and generating a response.
      Parameters:
      request - The HTTP request to process
      response - The HTTP response to populate