* @throws SystemException
*/
public RegistryVO create(RegistryVO valueObject, Database db) throws ConstraintException, SystemException, Exception
{
Registry registry = new RegistryImpl();
registry.setValueObject(valueObject);
db.create(registry);
return registry.getValueObject();
}