map = Collections.synchronizedMap(new HashMap());
return map;
StringBuffer buf = new StringBuffer(""); Set set = map.keySet(); synchronized(map) { Iterator i = set.iterator(); while (i.hasNext()) buf.append((String) i.next() + "<br>"); } return buf.toString();
if (key == null || value == null) throw new IllegalArgumentException("Invalid parameters passed to ContextObject.put"); map.put(key,value);
return getClass().getName() + "[ " + map+ " ]";