while (locRs.next()) {
_OCCommonRef obj = (_OCCommonRef) locRs.getObject(1);
_OCCommonObject commonObject = obj.getObject();
boolean objectChanged = false;
if (commonObject instanceof AttributeBean) {
AttributeBean aBean = (AttributeBean) commonObject;
Iterator<String> iter = mappedSet.keySet().iterator();
while (iter.hasNext()) {
String key = iter.next();
Object value = mappedSet.get(key);
//System.out.println(key + " => " + value);
aBean.setAttributeValue(key, new OCVariant(value));
if (!objectChanged) {
objectChanged = true;
}
}