Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7a825fe5764941f5d5f4f8b8355a8ff4b44afd26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*******************************************************************************
 * Copyright (c) 2012 Tasktop Technologies and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Tasktop Technologies - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.commons.tests.manual;

import org.eclipse.mylyn.commons.ui.dialogs.CredentialsDialog;
import org.eclipse.mylyn.commons.ui.dialogs.CredentialsDialog.Mode;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

/**
 * @author Steffen Pingel
 */
public class TestCredentialsDialog {

	public static void main(String[] args) {
		Display display = new Display();
		final Shell shell = new Shell(display);
		shell.setText("Test Credentials Dialog");
		shell.setLayout(new RowLayout());

		Button userButton = new Button(shell, SWT.PUSH);
		userButton.setText("Username/Password");
		userButton.addSelectionListener(new SelectionAdapter() {
			@Override
			public void widgetSelected(SelectionEvent e) {
				CredentialsDialog dialog = new CredentialsDialog(shell, Mode.USER);
				dialog.create();
				dialog.setMessage("Enter password");
				dialog.open();
				System.err.println("User name: " + dialog.getUserName());
				System.err.println("Password: " + dialog.getPassword());
				System.err.println("Save password: " + dialog.getSavePassword());
			}
		});

		Button domainButton = new Button(shell, SWT.PUSH);
		domainButton.setText("Domain");
		domainButton.addSelectionListener(new SelectionAdapter() {
			@Override
			public void widgetSelected(SelectionEvent e) {
				CredentialsDialog dialog = new CredentialsDialog(shell, Mode.USER);
				dialog.setNeedsDomain(true);
				dialog.create();
				dialog.setMessage("Enter password");
				dialog.open();
				System.err.println("User name: " + dialog.getUserName());
				System.err.println("Password: " + dialog.getPassword());
				System.err.println("Domain: " + dialog.getDomain());
				System.err.println("Save password: " + dialog.getSavePassword());
			}
		});

		Button keyStoreButton = new Button(shell, SWT.PUSH);
		keyStoreButton.setText("Key Store");
		keyStoreButton.addSelectionListener(new SelectionAdapter() {
			@Override
			public void widgetSelected(SelectionEvent e) {
				CredentialsDialog dialog = new CredentialsDialog(shell, Mode.KEY_STORE);
				dialog.create();
				dialog.setMessage("Enter keystore location");
				dialog.open();
				System.err.println("Key store filename: " + dialog.getKeyStoreFileName());
				System.err.println("Password: " + dialog.getPassword());
				System.err.println("Save password: " + dialog.getSavePassword());
			}
		});

		shell.pack();
		shell.open();
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch()) {
				display.sleep();
			}
		}
	}
}

Back to the top