Package org.apache.directory.shared.ldap.codec.api

Examples of org.apache.directory.shared.ldap.codec.api.SchemaBinaryAttributeDetector


    {
        config = new LdapConnectionConfig();
        config.setUseSsl( false );
        config.setLdapPort( config.getDefaultLdapPort() );
        config.setLdapHost( config.getDefaultLdapHost() );
        config.setBinaryAttributeDetector( new SchemaBinaryAttributeDetector( null ) );
        messageId = new AtomicInteger( 0 );
    }
View Full Code Here


    {
        config = new LdapConnectionConfig();
        config.setUseSsl( useSsl );
        config.setLdapPort( useSsl ? config.getDefaultLdapsPort() : config.getDefaultLdapPort() );
        config.setLdapHost( config.getDefaultLdapHost() );
        config.setBinaryAttributeDetector( new SchemaBinaryAttributeDetector( null ) );
        messageId = new AtomicInteger( 0 );
    }
View Full Code Here

        else
        {
            config.setLdapHost( server );
        }

        config.setBinaryAttributeDetector( new SchemaBinaryAttributeDetector( null ) );

        messageId = new AtomicInteger( 0 );
    }
View Full Code Here

        else
        {
            config.setLdapHost( server );
        }

        config.setBinaryAttributeDetector( new SchemaBinaryAttributeDetector( null ) );

        messageId = new AtomicInteger( 0 );
    }
View Full Code Here

        else
        {
            config.setLdapHost( server );
        }

        config.setBinaryAttributeDetector( new SchemaBinaryAttributeDetector( null ) );
        messageId = new AtomicInteger();
    }
View Full Code Here

            schemaManager = tmp;
           
            // Change the container's BinaryDetector
            ldapSession.setAttribute( LdapDecoder.MESSAGE_CONTAINER_ATTR,
                new LdapMessageContainer<MessageDecorator<? extends Message>>( codec,
                    new SchemaBinaryAttributeDetector( schemaManager ) ) );

        }
        catch ( LdapException le )
        {
            throw le;
View Full Code Here

                    LdapConnectionConfig configuration = new LdapConnectionConfig();
                    configuration.setLdapHost( "localhost" );
                    configuration.setLdapPort( 10389 );
                    configuration.setName( ServerDNConstants.ADMIN_SYSTEM_DN );
                    configuration.setCredentials( PartitionNexus.ADMIN_PASSWORD_STRING );
                    configuration.setBinaryAttributeDetector( new SchemaBinaryAttributeDetector( null ) );
                    LdapNetworkConnection connection = new LdapNetworkConnection( configuration );
                    connection.loadSchema();

                    // Binding on the connection
                    connection.bind();
View Full Code Here

        sslConfig = new LdapConnectionConfig();
        sslConfig.setLdapHost( "localhost" );
        sslConfig.setUseSsl( true );
        sslConfig.setLdapPort( getLdapServer().getPortSSL() );
        sslConfig.setTrustManagers( new NoVerificationTrustManager() );
        sslConfig.setBinaryAttributeDetector( new SchemaBinaryAttributeDetector(
                ldapServer.getDirectoryService().getSchemaManager() ) );

        tlsConfig = new LdapConnectionConfig();
        tlsConfig.setLdapHost( "localhost" );
        tlsConfig.setLdapPort( getLdapServer().getPort() );
        tlsConfig.setTrustManagers( new NoVerificationTrustManager() );
        tlsConfig.setBinaryAttributeDetector( new SchemaBinaryAttributeDetector(
            ldapServer.getDirectoryService().getSchemaManager() ) );
    }
View Full Code Here

        // Last, store the message container
        LdapMessageContainer<? extends MessageDecorator<Message>> ldapMessageContainer =
            new LdapMessageContainer<MessageDecorator<Message>>(
                ldapServer.getDirectoryService().getLdapCodecService(),
                new SchemaBinaryAttributeDetector(
                    ldapServer.getDirectoryService().getSchemaManager() ) );

        session.setAttribute( LdapDecoder.MESSAGE_CONTAINER_ATTR, ldapMessageContainer );
    }
View Full Code Here

    public static LdapConnection getPooledAdminConnection( LdapServer ldapServer ) throws Exception
    {
        LdapConnection ldapConnection = getAdminPool( ldapServer ).getConnection();
       
        ldapConnection.setBinaryAttributeDetector(
            new SchemaBinaryAttributeDetector(
                ldapServer.getDirectoryService().getSchemaManager()) );
       
        return ldapConnection;
    }
View Full Code Here

TOP

Related Classes of org.apache.directory.shared.ldap.codec.api.SchemaBinaryAttributeDetector

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.