I have a function to go through all sessionScopes:
function clearMap( map:Map ){ // Get iterator for the keys
var iterator = map.keySet().iterator(); // Remove all items
while( iterator.hasNext() ){
//would like to read here the keyValue
}
}
clearMap(sessionScope);
I would like to read the key value for each item in the map. (keys ending with _languagecode I would like to remove) but how can I do this?