in embedded-sample/src/main/java/org/apache/directory/seserver/EmbeddedADSVer157.java [92:103]
private void addIndex( Partition partition, String... attrs )
{
// Index some attributes on the apache partition
HashSet<Index<?, ServerEntry, Long>> indexedAttributes = new HashSet<Index<?, ServerEntry, Long>>();
for ( String attribute : attrs )
{
indexedAttributes.add( new JdbmIndex<String, ServerEntry>( attribute ) );
}
( ( JdbmPartition ) partition ).setIndexedAttributes( indexedAttributes );
}