com.itmill.toolkit.terminal
Interface ParameterHandler

All Known Implementing Classes:
Window

public interface ParameterHandler

Interface implemented by all the classes capable of handling external parameters.

Some terminals can provide external parameters for application. For example GET and POST parameters are passed to application as external parameters on Web Adapter. The parameters can be received at any time during the application lifecycle. All the parameter handlers implementing this interface and registered to Window receive all the parameters got from the terminal in the given window.

Since:
3.0
Version:
5.3.0
Author:
IT Mill Ltd.

Nested Class Summary
static interface ParameterHandler.ErrorEvent
          ParameterHandler error event.
 
Method Summary
 void handleParameters(Map parameters)
           Handles the given parameters.
 

Method Detail

handleParameters

void handleParameters(Map parameters)

Handles the given parameters. The parameters are given as inmodifieable name to value map. All parameters names are of type: String. All the parameter values are arrays of strings.

Parameters:
parameters - the Inmodifiable name to value[] mapping.


Copyright © 2000-2009 IT Mill Ltd. All Rights Reserved.