Examples of SyncRequestValue


Examples of org.apache.directory.shared.ldap.extras.controls.SyncRequestValue

            0x30, 0x05,                     // syncRequestValue ::= SEQUENCE {
              0x04, 0x03, 'a', 'b', 'c'     //     cookie syncCookie OPTIONAL,
            } );
        bb.flip();

        SyncRequestValue decorator = new SyncRequestValueDecorator( codec );
       
        try
        {
            ((SyncRequestValueDecorator)decorator).decode( bb.array() );
            fail( "we should not get there" );
View Full Code Here

Examples of org.apache.directory.shared.ldap.extras.controls.SyncRequestValue

            } );
        bb.flip();

        SyncRequestValueDecorator decorator = new SyncRequestValueDecorator( codec );
       
        SyncRequestValue syncRequestValue = (SyncRequestValue)decorator.decode( bb.array() );

        assertEquals( SynchronizationModeEnum.REFRESH_ONLY, syncRequestValue.getMode() );
        assertEquals( "abc", Strings.utf8ToString(syncRequestValue.getCookie()) );
        assertEquals( false, syncRequestValue.isReloadHint() );

        // Check the encoding
        try
        {
            bb = ByteBuffer.allocate( 0x0A );
View Full Code Here

Examples of org.apache.directory.shared.ldap.extras.controls.SyncRequestValue

            } );
        bb.flip();

        SyncRequestValueDecorator decorator = new SyncRequestValueDecorator( codec );
       
        SyncRequestValue syncRequestValue = (SyncRequestValue)decorator.decode( bb.array() );

        assertEquals( SynchronizationModeEnum.REFRESH_AND_PERSIST, syncRequestValue.getMode() );
        assertEquals( "abc", Strings.utf8ToString(syncRequestValue.getCookie()) );
        assertEquals( false, syncRequestValue.isReloadHint() );

        // Check the encoding
        try
        {
            ByteBuffer buffer = ByteBuffer.allocate( 0x0A );
View Full Code Here

Examples of org.apache.directory.shared.ldap.extras.controls.SyncRequestValue

            } );
        bb.flip();

        SyncRequestValueDecorator decorator = new SyncRequestValueDecoratorcodec );
       
        SyncRequestValue syncRequestValue = (SyncRequestValue)decorator.decode( bb.array() );

        assertEquals( SynchronizationModeEnum.REFRESH_AND_PERSIST, syncRequestValue.getMode() );
        assertNull( syncRequestValue.getCookie() );
        assertEquals( false, syncRequestValue.isReloadHint() );

        // Check the encoding
        try
        {
            bb = ByteBuffer.allocate( 0x05 );
View Full Code Here

Examples of org.apache.directory.shared.ldap.extras.controls.SyncRequestValue

            } );
        buffer.flip();

        SyncRequestValueDecorator decorator = new SyncRequestValueDecorator( codec );
       
        SyncRequestValue syncRequestValue = (SyncRequestValue)decorator.decode( buffer.array() );

        assertEquals( SynchronizationModeEnum.REFRESH_AND_PERSIST, syncRequestValue.getMode() );
        assertNull( syncRequestValue.getCookie() );
        assertEquals( true, syncRequestValue.isReloadHint() );

        // Check the encoding
        try
        {
            ByteBuffer bb = ((SyncRequestValueDecorator)syncRequestValue).encode( ByteBuffer.allocate( ((SyncRequestValueDecorator)syncRequestValue).computeLength() ) );
View Full Code Here

Examples of org.apache.directory.shared.ldap.extras.controls.SyncRequestValue

            } );
        bb.flip();

        SyncRequestValueDecorator decorator = new SyncRequestValueDecorator( codec );
       
        SyncRequestValue syncRequestValue = (SyncRequestValue)decorator.decode( bb.array() );

        assertEquals( SynchronizationModeEnum.REFRESH_AND_PERSIST, syncRequestValue.getMode() );
        assertNull( syncRequestValue.getCookie() );
        assertEquals( false, syncRequestValue.isReloadHint() );

        // Check the encoding
        try
        {
            ByteBuffer buffer = ((SyncRequestValueDecorator)syncRequestValue).encode( ByteBuffer.allocate( ((SyncRequestValueDecorator)syncRequestValue).computeLength() ) );
View Full Code Here

Examples of org.apache.directory.shared.ldap.extras.controls.SyncRequestValue

            } );
        bb.flip();

        SyncRequestValueDecorator decorator = new SyncRequestValueDecorator( codec );
       
        SyncRequestValue syncRequestValue = (SyncRequestValue)decorator.decode( bb.array() );

        assertEquals( SynchronizationModeEnum.REFRESH_AND_PERSIST, syncRequestValue.getMode() );
        assertEquals( "abc", Strings.utf8ToString(syncRequestValue.getCookie()) );
        assertEquals( false, syncRequestValue.isReloadHint() );

        // Check the encoding
        try
        {
            ByteBuffer buffer = ((SyncRequestValueDecorator)syncRequestValue).encode( ByteBuffer.allocate( ((SyncRequestValueDecorator)syncRequestValue).computeLength() ) );
View Full Code Here

Examples of org.apache.directory.shared.ldap.extras.controls.SyncRequestValue

            } );
        bb.flip();

        SyncRequestValueDecorator decorator = new SyncRequestValueDecorator( codec );
       
        SyncRequestValue syncRequestValue = (SyncRequestValue)decorator.decode( bb.array() );

        assertEquals( SynchronizationModeEnum.REFRESH_AND_PERSIST, syncRequestValue.getMode() );
        assertEquals( "", Strings.utf8ToString(syncRequestValue.getCookie()) );
        assertEquals( false, syncRequestValue.isReloadHint() );

        // Check the encoding
        try
        {
            bb = ByteBuffer.allocate( 0x05 );
View Full Code Here

Examples of org.apache.directory.shared.ldap.extras.controls.SyncRequestValue

    {
        try
        {
            //System.out.println( "Init replication on Provider" );
            // First extract the Sync control from the request
            SyncRequestValue syncControl = ( SyncRequestValue ) request.getControls().get(
                SyncRequestValue.OID );

            // cookie is in the format <replicaId>;<Csn value>
            byte[] cookieBytes = syncControl.getCookie();

            if ( cookieBytes == null )
            {
                // No cookie ? We have to get all the entries from the server
                doInitialRefresh( session, request );
View Full Code Here

Examples of org.apache.directory.shared.ldap.extras.controls.SyncRequestValue

    /**
     * Tells if the control contains the REFRESHNPERSIST mode
     */
    private boolean isRefreshNPersist( SearchRequest req )
    {
        SyncRequestValue control = ( SyncRequestValue ) req.getControls().get( SyncRequestValue.OID );
       
        return control.getMode() == SynchronizationModeEnum.REFRESH_AND_PERSIST;
    }
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.