206207208209210211212213214
attributes = new HashMap(); Iterator atts = entry.getEntryAttributes().iterator(); while (atts.hasNext()) { EntryAttributeData att = (EntryAttributeData)atts.next(); attributes.put(att.getName(), att.getValue()); } }
208209210211212213214215216