Package org.apache.directory.ldapstudio.browser.core.events

Examples of org.apache.directory.ldapstudio.browser.core.events.ConnectionUpdateEvent



    public void setAliasesDereferencingMethod( int aliasesDereferencingMethod )
    {
        this.connectionParameter.setAliasesDereferencingMethod( aliasesDereferencingMethod );
        EventRegistry.fireConnectionUpdated( new ConnectionUpdateEvent( this,
            ConnectionUpdateEvent.EventDetail.CONNECTION_PARAMETER_UPDATED ), this );
    }
View Full Code Here



    public void setReferralsHandlingMethod( int referralsHandlingMethod )
    {
        this.connectionParameter.setReferralsHandlingMethod( referralsHandlingMethod );
        EventRegistry.fireConnectionUpdated( new ConnectionUpdateEvent( this,
            ConnectionUpdateEvent.EventDetail.CONNECTION_PARAMETER_UPDATED ), this );
    }
View Full Code Here


    public void setEncryptionMethod( int encryptionMethod )
    {
        this.connectionParameter.setEncryptionMethod( encryptionMethod );
        EventRegistry.fireConnectionUpdated( new ConnectionUpdateEvent( this,
            ConnectionUpdateEvent.EventDetail.CONNECTION_PARAMETER_UPDATED ), this );
    }
View Full Code Here


    public void setTimeLimit( int timeLimit )
    {
        this.connectionParameter.setTimeLimit( timeLimit );
        EventRegistry.fireConnectionUpdated( new ConnectionUpdateEvent( this,
            ConnectionUpdateEvent.EventDetail.CONNECTION_PARAMETER_UPDATED ), this );
    }
View Full Code Here


    public void setBindPrincipal( String bindPrincipal )
    {
        this.connectionParameter.setBindPrincipal( bindPrincipal );
        EventRegistry.fireConnectionUpdated( new ConnectionUpdateEvent( this,
            ConnectionUpdateEvent.EventDetail.CONNECTION_PARAMETER_UPDATED ), this );
    }
View Full Code Here


    public void setBindPassword( String bindPassword )
    {
        this.connectionParameter.setBindPassword( bindPassword );
        EventRegistry.fireConnectionUpdated( new ConnectionUpdateEvent( this,
            ConnectionUpdateEvent.EventDetail.CONNECTION_PARAMETER_UPDATED ), this );
    }
View Full Code Here


    public void setAuthMethod( int authMethod )
    {
        this.connectionParameter.setAuthMethod( authMethod );
        EventRegistry.fireConnectionUpdated( new ConnectionUpdateEvent( this,
            ConnectionUpdateEvent.EventDetail.CONNECTION_PARAMETER_UPDATED ), this );
    }
View Full Code Here


    public void setConnectionProviderClassName( String connectionProviderClassName )
    {
        this.connectionParameter.setConnectionProviderClassName( connectionProviderClassName );
        EventRegistry.fireConnectionUpdated( new ConnectionUpdateEvent( this,
            ConnectionUpdateEvent.EventDetail.CONNECTION_PARAMETER_UPDATED ), this );
    }
View Full Code Here

            }
            connection.getConnectionParameter().setName( newConnectionName );
        }

        connectionList.add( index, connection );
        EventRegistry.fireConnectionUpdated( new ConnectionUpdateEvent( connection,
            ConnectionUpdateEvent.EventDetail.CONNECTION_ADDED ), this );
    }
View Full Code Here

     */
    public void removeConnection( IConnection conn )
    {
        connectionList.remove( conn );
        EventRegistry.fireConnectionUpdated(
            new ConnectionUpdateEvent( conn, ConnectionUpdateEvent.EventDetail.CONNECTION_REMOVED ), this );
    }
View Full Code Here

TOP

Related Classes of org.apache.directory.ldapstudio.browser.core.events.ConnectionUpdateEvent

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.