org.araneaframework
Interface Service.Interface

All Superinterfaces:
Serializable
All Known Implementing Classes:
BaseService.ServiceImpl
Enclosing interface:
Service

public static interface Service.Interface
extends Serializable

Defines the interface for handling requests.


Method Summary
 void action(Path path, InputData input, OutputData output)
          Request handling method for services.
 

Method Detail

action

public void action(Path path,
                   InputData input,
                   OutputData output)
Request handling method for services.

Parameters:
path - The path of the component to whom the action is targeted.
input - The request data.
output - The response data.