Calendar calendar = new GregorianCalendar(2012, 0, 6);
calendar.setTimeZone(TimeZone.getTimeZone("GMT"));
mapa.put("date", new Date(calendar.getTimeInMillis()));
testMultiple(obja, mapa);
Object objc = repository.create("mapConstructionWithTypedEntries");
Map mapc = new HashMap();
mapc.put("boolean", Boolean.TRUE);
mapc.put("double", 1.23);
mapc.put("date", new Date(calendar.getTimeInMillis()));
testMultiple(objc, mapc);