// Special case of CompositeDataSuppert
if (value instanceof CompositeDataSupport) {
CompositeDataSupport compositeValue = (CompositeDataSupport) value;
if (compositeValue != null) {
try {
if (compositeValue.containsKey(CURRENT_VALUE)) {
Object curValue = compositeValue.get(CURRENT_VALUE);
attrValue = (curValue == null ? "null" : curValue.toString());
}
}
catch (Exception e) {