// document creation. After doing that, all that will be required is to
// maintain a map of all the properties with key as the prop name. This
// will also eliminate maintaining multiple member attributes in this
// class. All the attribute will be there in a common map.
for (final Iterator<Attribute> iter = getAllAttrs().iterator(); iter.hasNext();) {
final Attribute attr = iter.next();
if (collator.equals(strPropertyName, attr.getName())) {
String strAttrValue = attr.getValue().toString();
// Current approach is to parse field values for ;# characters.
// TODO Utilize SharePoint Field meta-data and process values
// for only columns with SharePoint Field type as
// "LookupMulti" or "MultiChoice"
List<Value> valuesToPass;