com.sun.n1.sps.model.user
Interface SessionVariableSet


public interface SessionVariableSet

A collection of session variables for a user. Provides operations to query for a particular session variables, list them and manage them.


Method Summary
 boolean contains(java.lang.String inVarName)
          Returns true if the session contains the specified variable.
 SessionVariable getVariable(java.lang.String inName)
          Returns the Session Variable given its name.
 java.util.Collection getVariables()
          Returns an unmodifiable collection of all SessionVariable objects set in this variable set.
 

Method Detail

getVariables

java.util.Collection getVariables()
Returns an unmodifiable collection of all SessionVariable objects set in this variable set.

Returns:
An unmodifiable collection of all SessionVariable objects in this variable set.

getVariable

SessionVariable getVariable(java.lang.String inName)
Returns the Session Variable given its name.

Parameters:
inName - The name of the session variable requested.
Returns:
The session variable if found, null otherwise.

contains

boolean contains(java.lang.String inVarName)
Returns true if the session contains the specified variable.

Parameters:
inVarName - The name of the session variable.
Returns:
true if the specified variable was set in the current session.