for (Map.Entry<LdapStructureEntry, AttributeContributions> e : attributes.entrySet()) {
ObjectClassStructure struct = classStructs.get(e.getKey().getOid());
// struct is guaranteed to be != null, otherwise we would have got an
// IllegalArgumentException from build()
AttributeContributions attrs = attributes.get(e.getKey());
LdapStructureEntryNode node = new LdapStructureEntryNodeImpl(e.getKey(), struct, attrs);
nodes.add(node);
}
return nodes;
}