com.sdm.quasar.client.jsf.dialog.services
Interface RequestDataService

All Superinterfaces:
Service
All Known Implementing Classes:
DefaultRequestDataService

public interface RequestDataService
extends Service

This srevice provides the request scope.

Author:
Martin Haft

Method Summary
 java.util.Enumeration getRequestValueKeys()
           
 java.lang.Object getValueFromRequest(java.lang.String key)
          Reads an attribute from the current request
 void removeValueFromRequest(java.lang.String key)
          Removes an attribute from current request
 void setValueToRequest(java.lang.String key, java.lang.Object value)
          Puts an attribute to the current request
 

Method Detail

setValueToRequest

public void setValueToRequest(java.lang.String key,
                              java.lang.Object value)
Puts an attribute to the current request

Parameters:
key - the key of the attribute
value - the value of the attribute

getValueFromRequest

public java.lang.Object getValueFromRequest(java.lang.String key)
Reads an attribute from the current request

Parameters:
key - the key of the attribute
Returns:
the value of the attribute

removeValueFromRequest

public void removeValueFromRequest(java.lang.String key)
Removes an attribute from current request

Parameters:
key - the key of the attribute

getRequestValueKeys

public java.util.Enumeration getRequestValueKeys()
Returns:
all key of the attributes from the current request