init();
}
private void init()
{
addConstraint(new ConstrainedProperty("id").notNull(true));
addConstraint(new ConstrainedProperty("name").notNull(true).notEmpty(true).maxLength(255));
addConstraint(new ConstrainedProperty("lowcasekey").notNull(true).notEmpty(true).maxLength(255));
addConstraint(new ConstrainedProperty("answer").notNull(true).notEmpty(true));
addConstraint(new ConstrainedProperty("random").notNull(true).defaultValue(false));
}