Package org.apache.directory.ldapstudio.proxy.view.wizards

Examples of org.apache.directory.ldapstudio.proxy.view.wizards.ConnectWizard


    /* (non-Javadoc)
     * @see org.eclipse.jface.action.Action#run()
     */
    public void run()
    {
        ConnectWizard connectWizard = new ConnectWizard();

        WizardDialog dialog = new WizardDialog( PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(),
            connectWizard );
        dialog.create();
        if ( dialog.open() == Window.OK )
        {
            LdapProxy ldapProxy = new LdapProxy( connectWizard.getLocalPort(), connectWizard.getRemoteHost(),
                connectWizard.getRemotePort() );
            view.setLdapProxy( ldapProxy );
            try
            {
                ldapProxy.connect();
            }
View Full Code Here

TOP

Related Classes of org.apache.directory.ldapstudio.proxy.view.wizards.ConnectWizard

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.