Examples of HasEntryOperationContext


Examples of org.apache.directory.server.core.api.interceptor.context.HasEntryOperationContext

        // Add root context entry for system partition
        Dn systemSuffixDn = getDnFactory().create( ServerDNConstants.SYSTEM_DN );
        CoreSession adminSession = getAdminSession();

        if ( !system.hasEntry( new HasEntryOperationContext( adminSession, systemSuffixDn ) ) )
        {
            Entry systemEntry = new DefaultEntry( schemaManager, systemSuffixDn );

            // Add the ObjectClasses
            systemEntry.put( SchemaConstants.OBJECT_CLASS_AT, SchemaConstants.TOP_OC,
View Full Code Here

Examples of org.apache.directory.server.core.api.interceptor.context.HasEntryOperationContext

    /**
     * {@inheritDoc}
     */
    public boolean exists( Dn dn ) throws LdapException
    {
        HasEntryOperationContext hasEntryContext = new HasEntryOperationContext( this, dn );
        OperationManager operationManager = directoryService.getOperationManager();

        return operationManager.hasEntry( hasEntryContext );
    }
View Full Code Here

Examples of org.apache.directory.server.core.api.interceptor.context.HasEntryOperationContext

        CoreSession adminSession = service.getAdminSession();

        // First, check that the user exists
        try
        {
            HasEntryOperationContext hasEntryContext = new HasEntryOperationContext( adminSession );
            hasEntryContext.setDn( userDn );

            if ( !service.getOperationManager().hasEntry( hasEntryContext ) )
            {
                LOG.error( "Cannot find an entry for DN " + userDn );
                // We can't find the entry in the DIT
View Full Code Here

Examples of org.apache.directory.server.core.api.interceptor.context.HasEntryOperationContext

            List<EntryFilteringCursor> cursors = new ArrayList<EntryFilteringCursor>();

            for ( Partition partition : partitions.values() )
            {
                Dn contextDn = partition.getSuffixDn();
                HasEntryOperationContext hasEntryContext = new HasEntryOperationContext(
                    searchContext.getSession(), contextDn );

                // search only if the context entry exists
                if ( partition.hasEntry( hasEntryContext ) )
                {
                    searchContext.setDn( contextDn );
                    searchContext.setScope( SearchScope.OBJECT );
                    cursors.add( partition.search( searchContext ) );
                }
            }

            return new CursorList( cursors, searchContext );
        }
        else
        {
            // This is a SUBLEVEL search. We will do multiple searches and wrap
            // a CursorList into the EntryFilteringCursor
            List<EntryFilteringCursor> cursors = new ArrayList<EntryFilteringCursor>();

            for ( Partition partition : partitions.values() )
            {
                Dn contextDn = partition.getSuffixDn();
                HasEntryOperationContext hasEntryContext = new HasEntryOperationContext(
                    searchContext.getSession(), contextDn );

                if ( partition.hasEntry( hasEntryContext ) )
                {
                    searchContext.setDn( contextDn );
View Full Code Here

Examples of org.apache.directory.server.core.api.interceptor.context.HasEntryOperationContext

    // -------------------------------------------------------------------

        /*
         * If the admin entry is there, then the database was already created
         */
    if ( !partitionNexus.hasEntry( new HasEntryOperationContext( adminSession, adminDn ) ) )
    {
      firstStart = true;

      Entry serverEntry = new DefaultEntry( schemaManager, adminDn );

      serverEntry.put( SchemaConstants.OBJECT_CLASS_AT,
          SchemaConstants.TOP_OC,
          SchemaConstants.PERSON_OC,
          SchemaConstants.ORGANIZATIONAL_PERSON_OC,
          SchemaConstants.INET_ORG_PERSON_OC );

      serverEntry.put( SchemaConstants.UID_AT, PartitionNexus.ADMIN_UID );
      serverEntry.put( SchemaConstants.USER_PASSWORD_AT, PartitionNexus.ADMIN_PASSWORD_BYTES );
      serverEntry.put( SchemaConstants.DISPLAY_NAME_AT, "Directory Superuser" );
      serverEntry.put( SchemaConstants.CN_AT, "system administrator" );
      serverEntry.put( SchemaConstants.SN_AT, "administrator" );
      serverEntry.put( SchemaConstants.CREATORS_NAME_AT, ServerDNConstants.ADMIN_SYSTEM_DN_NORMALIZED );
      serverEntry.put( SchemaConstants.CREATE_TIMESTAMP_AT, DateUtils.getGeneralizedTime() );
      serverEntry.put( SchemaConstants.DISPLAY_NAME_AT, "Directory Superuser" );
      serverEntry.add( SchemaConstants.ENTRY_CSN_AT, getCSN().toString() );
      serverEntry.add( SchemaConstants.ENTRY_UUID_AT, UUID.randomUUID().toString() );

      TlsKeyGenerator.addKeyPair( serverEntry );
      partitionNexus.add( new AddOperationContext( adminSession, serverEntry ) );
    }

    // -------------------------------------------------------------------
    // create system users area
    // -------------------------------------------------------------------

    Dn userDn = getDnFactory().create( ServerDNConstants.USERS_SYSTEM_DN );

    if ( !partitionNexus.hasEntry( new HasEntryOperationContext( adminSession, userDn ) ) )
    {
      firstStart = true;

      Entry serverEntry = new DefaultEntry( schemaManager, userDn );

      serverEntry.put( SchemaConstants.OBJECT_CLASS_AT,
          SchemaConstants.TOP_OC,
          SchemaConstants.ORGANIZATIONAL_UNIT_OC );

      serverEntry.put( SchemaConstants.OU_AT, "users" );
      serverEntry.put( SchemaConstants.CREATORS_NAME_AT, ServerDNConstants.ADMIN_SYSTEM_DN_NORMALIZED );
      serverEntry.put( SchemaConstants.CREATE_TIMESTAMP_AT, DateUtils.getGeneralizedTime() );
      serverEntry.add( SchemaConstants.ENTRY_CSN_AT, getCSN().toString() );
      serverEntry.add( SchemaConstants.ENTRY_UUID_AT, UUID.randomUUID().toString() );

      partitionNexus.add( new AddOperationContext( adminSession, serverEntry ) );
    }

    // -------------------------------------------------------------------
    // create system groups area
    // -------------------------------------------------------------------

    Dn groupDn = getDnFactory().create( ServerDNConstants.GROUPS_SYSTEM_DN );

    if ( !partitionNexus.hasEntry( new HasEntryOperationContext( adminSession, groupDn ) ) )
    {
      firstStart = true;

      Entry serverEntry = new DefaultEntry( schemaManager, groupDn );

      serverEntry.put( SchemaConstants.OBJECT_CLASS_AT,
          SchemaConstants.TOP_OC,
          SchemaConstants.ORGANIZATIONAL_UNIT_OC );

      serverEntry.put( SchemaConstants.OU_AT, "groups" );
      serverEntry.put( SchemaConstants.CREATORS_NAME_AT, ServerDNConstants.ADMIN_SYSTEM_DN_NORMALIZED );
      serverEntry.put( SchemaConstants.CREATE_TIMESTAMP_AT, DateUtils.getGeneralizedTime() );
      serverEntry.add( SchemaConstants.ENTRY_CSN_AT, getCSN().toString() );
      serverEntry.add( SchemaConstants.ENTRY_UUID_AT, UUID.randomUUID().toString() );

      partitionNexus.add( new AddOperationContext( adminSession, serverEntry ) );
    }

    // -------------------------------------------------------------------
    // create administrator group
    // -------------------------------------------------------------------

    Dn name = getDnFactory().create( ServerDNConstants.ADMINISTRATORS_GROUP_DN );

    if ( !partitionNexus.hasEntry( new HasEntryOperationContext( adminSession, name ) ) )
    {
      firstStart = true;

      Entry serverEntry = new DefaultEntry( schemaManager, name );

      serverEntry.put( SchemaConstants.OBJECT_CLASS_AT,
          SchemaConstants.TOP_OC,
          SchemaConstants.GROUP_OF_UNIQUE_NAMES_OC );

      serverEntry.put( SchemaConstants.CN_AT, "Administrators" );
      serverEntry.put( SchemaConstants.UNIQUE_MEMBER_AT, ServerDNConstants.ADMIN_SYSTEM_DN_NORMALIZED );
      serverEntry.put( SchemaConstants.CREATORS_NAME_AT, ServerDNConstants.ADMIN_SYSTEM_DN_NORMALIZED );
      serverEntry.put( SchemaConstants.CREATE_TIMESTAMP_AT, DateUtils.getGeneralizedTime() );
      serverEntry.add( SchemaConstants.ENTRY_CSN_AT, getCSN().toString() );
      serverEntry.add( SchemaConstants.ENTRY_UUID_AT, UUID.randomUUID().toString() );

      partitionNexus.add( new AddOperationContext( adminSession, serverEntry ) );
    }

    // -------------------------------------------------------------------
    // create system configuration area
    // -------------------------------------------------------------------

    Dn configurationDn = getDnFactory().create( "ou=configuration,ou=system" );

    if ( !partitionNexus.hasEntry( new HasEntryOperationContext( adminSession, configurationDn ) ) )
    {
      firstStart = true;

      Entry serverEntry = new DefaultEntry( schemaManager, configurationDn );
      serverEntry.put( SchemaConstants.OBJECT_CLASS_AT, SchemaConstants.TOP_OC,
          SchemaConstants.ORGANIZATIONAL_UNIT_OC );

      serverEntry.put( SchemaConstants.OU_AT, "configuration" );
      serverEntry.put( SchemaConstants.CREATORS_NAME_AT, ServerDNConstants.ADMIN_SYSTEM_DN_NORMALIZED );
      serverEntry.put( SchemaConstants.CREATE_TIMESTAMP_AT, DateUtils.getGeneralizedTime() );
      serverEntry.add( SchemaConstants.ENTRY_CSN_AT, getCSN().toString() );
      serverEntry.add( SchemaConstants.ENTRY_UUID_AT, UUID.randomUUID().toString() );

      partitionNexus.add( new AddOperationContext( adminSession, serverEntry ) );
    }

    // -------------------------------------------------------------------
    // create system configuration area for partition information
    // -------------------------------------------------------------------

    Dn partitionsDn = getDnFactory().create( "ou=partitions,ou=configuration,ou=system" );

    if ( !partitionNexus.hasEntry( new HasEntryOperationContext( adminSession, partitionsDn ) ) )
    {
      firstStart = true;

      Entry serverEntry = new DefaultEntry( schemaManager, partitionsDn );
      serverEntry.put( SchemaConstants.OBJECT_CLASS_AT, SchemaConstants.TOP_OC,
          SchemaConstants.ORGANIZATIONAL_UNIT_OC );
      serverEntry.put( SchemaConstants.OU_AT, "partitions" );
      serverEntry.put( SchemaConstants.CREATORS_NAME_AT, ServerDNConstants.ADMIN_SYSTEM_DN_NORMALIZED );
      serverEntry.put( SchemaConstants.CREATE_TIMESTAMP_AT, DateUtils.getGeneralizedTime() );
      serverEntry.add( SchemaConstants.ENTRY_CSN_AT, getCSN().toString() );
      serverEntry.add( SchemaConstants.ENTRY_UUID_AT, UUID.randomUUID().toString() );

      partitionNexus.add( new AddOperationContext( adminSession, serverEntry ) );
    }

    // -------------------------------------------------------------------
    // create system configuration area for services
    // -------------------------------------------------------------------

    Dn servicesDn = getDnFactory().create( "ou=services,ou=configuration,ou=system" );

    if ( !partitionNexus.hasEntry( new HasEntryOperationContext( adminSession, servicesDn ) ) )
    {
      firstStart = true;

      Entry serverEntry = new DefaultEntry( schemaManager, servicesDn );
      serverEntry.put( SchemaConstants.OBJECT_CLASS_AT, SchemaConstants.TOP_OC,
          SchemaConstants.ORGANIZATIONAL_UNIT_OC );

      serverEntry.put( SchemaConstants.OU_AT, "services" );
      serverEntry.put( SchemaConstants.CREATORS_NAME_AT, ServerDNConstants.ADMIN_SYSTEM_DN_NORMALIZED );
      serverEntry.put( SchemaConstants.CREATE_TIMESTAMP_AT, DateUtils.getGeneralizedTime() );
      serverEntry.add( SchemaConstants.ENTRY_CSN_AT, getCSN().toString() );
      serverEntry.add( SchemaConstants.ENTRY_UUID_AT, UUID.randomUUID().toString() );

      partitionNexus.add( new AddOperationContext( adminSession, serverEntry ) );
    }

    // -------------------------------------------------------------------
    // create system configuration area for interceptors
    // -------------------------------------------------------------------

    Dn interceptorsDn = getDnFactory().create( "ou=interceptors,ou=configuration,ou=system" );

    if ( !partitionNexus.hasEntry( new HasEntryOperationContext( adminSession, interceptorsDn ) ) )
    {
      firstStart = true;

      Entry serverEntry = new DefaultEntry( schemaManager, interceptorsDn );
      serverEntry.put( SchemaConstants.OBJECT_CLASS_AT, SchemaConstants.TOP_OC,
          SchemaConstants.ORGANIZATIONAL_UNIT_OC );

      serverEntry.put( SchemaConstants.OU_AT, "interceptors" );
      serverEntry.put( SchemaConstants.CREATORS_NAME_AT, ServerDNConstants.ADMIN_SYSTEM_DN_NORMALIZED );
      serverEntry.put( SchemaConstants.CREATE_TIMESTAMP_AT, DateUtils.getGeneralizedTime() );
      serverEntry.add( SchemaConstants.ENTRY_CSN_AT, getCSN().toString() );
      serverEntry.add( SchemaConstants.ENTRY_UUID_AT, UUID.randomUUID().toString() );

      partitionNexus.add( new AddOperationContext( adminSession, serverEntry ) );
    }

    // -------------------------------------------------------------------
    // create system preferences area
    // -------------------------------------------------------------------

    Dn sysPrefRootDn = getDnFactory().create( ServerDNConstants.SYSPREFROOT_SYSTEM_DN );

    if ( !partitionNexus.hasEntry( new HasEntryOperationContext( adminSession, sysPrefRootDn ) ) )
    {
      firstStart = true;

      Entry serverEntry = new DefaultEntry( schemaManager, sysPrefRootDn );
      serverEntry.put( SchemaConstants.OBJECT_CLASS_AT,
View Full Code Here

Examples of org.apache.directory.server.core.api.interceptor.context.HasEntryOperationContext

    // Add root context entry for system partition
    Dn systemSuffixDn = getDnFactory().create( ServerDNConstants.SYSTEM_DN );
    CoreSession adminSession = getAdminSession();

    if ( !system.hasEntry( new HasEntryOperationContext( adminSession, systemSuffixDn ) ) )
    {
      Entry systemEntry = new DefaultEntry( schemaManager, systemSuffixDn );

      // Add the ObjectClasses
      systemEntry.put( SchemaConstants.OBJECT_CLASS_AT, SchemaConstants.TOP_OC,
View Full Code Here

Examples of org.apache.directory.server.core.api.interceptor.context.HasEntryOperationContext

    {
        Dn target = buildTarget( JndiUtils.fromName( name ) );

        try
        {
            HasEntryOperationContext hasEntryContext = new HasEntryOperationContext( getSession(), target );

            if ( getDirectoryService().getOperationManager().hasEntry( hasEntryContext ) )
            {
                doDeleteOperation( target );
            }
View Full Code Here

Examples of org.apache.directory.server.core.api.interceptor.context.HasEntryOperationContext

        // Add root context entry for system partition
        Dn systemSuffixDn = directoryService.getDnFactory().create( ServerDNConstants.SYSTEM_DN );
        CoreSession adminSession = directoryService.getAdminSession();

        if ( !system.hasEntry( new HasEntryOperationContext( adminSession, systemSuffixDn ) ) )
        {
            Entry systemEntry = new DefaultEntry( schemaManager, systemSuffixDn );

            // Add the ObjectClasses
            systemEntry.put( SchemaConstants.OBJECT_CLASS_AT, SchemaConstants.TOP_OC,
View Full Code Here

Examples of org.apache.directory.server.core.api.interceptor.context.HasEntryOperationContext

            List<EntryFilteringCursor> cursors = new ArrayList<EntryFilteringCursor>();

            for ( Partition partition : partitions.values() )
            {
                Dn contextDn = partition.getSuffixDn();
                HasEntryOperationContext hasEntryContext = new HasEntryOperationContext(
                    searchContext.getSession(), contextDn );

                // search only if the context entry exists
                if ( partition.hasEntry( hasEntryContext ) )
                {
                    searchContext.setDn( contextDn );
                    searchContext.setScope( SearchScope.OBJECT );
                    cursors.add( partition.search( searchContext ) );
                }
            }

            return new CursorList( cursors, searchContext );
        }
        else
        {
            // This is a SUBLEVEL search. We will do multiple searches and wrap
            // a CursorList into the EntryFilteringCursor
            List<EntryFilteringCursor> cursors = new ArrayList<EntryFilteringCursor>();

            for ( Partition partition : partitions.values() )
            {
                Dn contextDn = partition.getSuffixDn();
                HasEntryOperationContext hasEntryContext = new HasEntryOperationContext(
                    searchContext.getSession(), contextDn );

                if ( partition.hasEntry( hasEntryContext ) )
                {
                    searchContext.setDn( contextDn );
View Full Code Here

Examples of org.apache.directory.server.core.api.interceptor.context.HasEntryOperationContext

        Dn target = buildTarget( JndiUtils.fromName( name ) );
        OperationManager operationManager = service.getOperationManager();

        try
        {
            HasEntryOperationContext hasEntryContext = new HasEntryOperationContext( session, target );

            if ( operationManager.hasEntry( hasEntryContext ) )
            {
                doDeleteOperation( target );
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.