Package org.nasutekds.server.core

Examples of org.nasutekds.server.core.SubentryManager


    if (this.isSubentry() || this.isLDAPSubentry())
    {
      return;
    }

    SubentryManager manager =
            DirectoryServer.getSubentryManager();
    if(manager == null)
    {
      //Subentry manager may not have been initialized by
      //a component that doesn't require it.
      return;
    }
    // Get applicable collective subentries.
    List<SubEntry> collectiveAttrSubentries =
            manager.getCollectiveSubentries(this);

    if ((collectiveAttrSubentries == null) ||
         collectiveAttrSubentries.isEmpty())
    {
      // Nothing to see here, move along.
View Full Code Here

TOP

Related Classes of org.nasutekds.server.core.SubentryManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.