entity.setProperty(GbProperty.SHORT, new Short(RandomStringUtils.randomNumeric(1)));
entity.setProperty(GbProperty.INTEGER, new Integer(RandomUtils.nextInt()));
entity.setProperty(GbProperty.LONG, new Long(RandomUtils.nextLong()));
entity.setProperty(GbProperty.FLOAT, new Float(RandomUtils.nextFloat()));
entity.setProperty(GbProperty.DOUBLE, new Double(RandomUtils.nextDouble()));
entity.setProperty(GbProperty.USER, new User(
RandomStringUtils.randomAlphanumeric(20),
RandomStringUtils.randomAlphanumeric(20)));
entity.setProperty(GbProperty.KEY + "Id", KeyFactory.createKey(RandomStringUtils
.randomAlphabetic(5), RandomUtils.nextLong()));
entity.setProperty(GbProperty.KEY + "Name", KeyFactory.createKey(RandomStringUtils