entity.setProperty("Long", new Long(RandomUtils.nextLong()));
entity.setProperty("Boolean", new Boolean(RandomUtils.nextBoolean()));
entity.setProperty("Float", new Float(RandomUtils.nextFloat()));
entity.setProperty("Double", new Double(RandomUtils.nextDouble()));
entity.setProperty("Date", new Date(RandomUtils.nextLong()));
entity.setProperty("User", new User("test@example", "google.com"));
entity.setProperty("Key", KeyFactory.createKey("test", RandomStringUtils
.randomAlphabetic(5)));
entity.setProperty("Category", new Category(RandomStringUtils.randomAlphabetic(3)));
entity.setProperty("Email", new Email("test@example"));
entity.setProperty("GeoPt", new GeoPt(new Float(new Integer(RandomStringUtils