﻿function Session(){
	this.map=new Map();
	this.setAttribute=function(key,value){
		return this.map.put(key,value);
	}
	this.getAttribute=function(key){
		return this.map.get(key);
	}
	this.removeAttribute=function(key){
		return this.map.remove(key);
	}
	this.invalidate=function(){
		return this.map.clear();
	}
	this.getMap=function(){
		return this.map;
	}
}

