public void setInSession(String key, Object value) {
getSession().setAttribute(key, value);
}
public void initConetxtManager() {
SpagoBIHttpSessionContainer sessionContainer;
IContextRetrieverStrategy contextRetriveStrategy;
String executionId;
sessionContainer = new SpagoBIHttpSessionContainer( getSession() );
executionId = (String)getRequest().getParameter(EXECUTION_ID);
contextRetriveStrategy = new ExecutionContextRetrieverStrategy( executionId );
setContextManager( new ContextManager(sessionContainer, contextRetriveStrategy) );