Emmanuel Lecharny wrote:
Hi all,

I'm trying to figure out if code like :

...
           Attributes entry = ( Attributes ) i.next();
           if ( entry.get( "dn" ) == null )
           {
throw new ConfigurationException( "Test entries must have DN attributes" );
           }
...

makes sense or not.

In my mind, Attributes should not containes "dn", because "dn" is already stored elswhere. Am I wrong ? wdyt ?

Depends on what created the "entry". The old LDIF parser will return the dn as an attribute which needs to be removed. This is the ONLY Place where DN is an attribute in the entry.

Alex

Reply via email to