227228229230231232233234
{ return immutableAttributeTypeRegistry.getOidByName( name ); } catch ( LdapException le ) { throw new LdapNoSuchAttributeException( le.getMessage() ); } }
6869707172737475
Set<ObjectClass> descendants = oidToDescendants.get( oid ); return ( descendants != null ) && !descendants.isEmpty(); } catch ( LdapException ne ) { throw new LdapNoSuchAttributeException( ne.getMessage() ); } }
93949596979899100
return descendants.iterator(); } catch ( LdapException ne ) { throw new LdapNoSuchAttributeException( ne.getMessage() ); } }
132133134135136137138139140
// And recurse until we reach the top of the hierarchy registerDescendants( objectClass, ancestor.getSuperiors() ); } catch ( LdapException ne ) { throw new LdapNoSuchAttributeException( ne.getMessage() ); } } }
172173174175176177178179180
// And recurse until we reach the top of the hierarchy unregisterDescendants( attributeType, ancestor.getSuperiors() ); } catch ( LdapException ne ) { throw new LdapNoSuchAttributeException( ne.getMessage() ); } } }
199200201202203204205206
return removed; } catch ( LdapException ne ) { throw new LdapNoSuchAttributeException( ne.getMessage() ); } }
8788899091929394
Set<AttributeType> descendants = oidToDescendantSet.get( oid ); return ( descendants != null ) && !descendants.isEmpty(); } catch ( LdapException ne ) { throw new LdapNoSuchAttributeException( ne.getMessage() ); } }
123124125126127128129130
245246247248249250251252
311312313314315316317318
{ return super.lookup( oid ); } catch ( LdapException ne ) { throw new LdapNoSuchAttributeException( ne.getMessage() ); } }