"The parameter key to column family should be passed");
}
ClassInformation classInformations = ClassInformations.INSTACE.getClass(bean);
KeySpaceInformation keyInformation = classInformations.getKeySpace(keySpace);
Update update = QueryBuilder.update(keyInformation.getKeySpace(),
keyInformation.getColumnFamily());
FieldInformation keyField = classInformations.getKeyInformation();
if (classInformations.isComplexKey()) {
runComplexKey(update, key, keyField.getSubFields().getFields());
} else {
update.where(QueryBuilder.eq(keyField.getName(), key));
}
return update;
}