dE wrote:
Super this is the superclass chain --
A->B
A is defined by MUST ObjectClass MAY ( cn abc xyz cxy ) B is defined by MUST ObjectClass MAY ( cn cxy )
Then an entry belonging to B (explicit) and A (implicit, automatically added) cannot have attributes abc and xyz.
No!
B would have MAY ( cn abc xyz cxy ).
Example for A:
objectclass ( <some-oid-for-A> NAME 'A' MAY ( cn $ abc $ xyz $ cxy ) )
These three variants have the same MAY attribute set ( cn $ abc $ xyz $ cxy ):
objectclass ( <some-oid-for-B> NAME 'B' SUP A MAY ( cn $ cxy ) )
objectclass ( <some-oid-for-B> NAME 'B' SUP A MAY ( cn $ abc $ xyz $ cxy ) )
objectclass ( <some-oid-for-B> NAME 'B' SUP A )
Ciao, Michael.