|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
com.tssap.util.ui.dialog.LogonDialog
Class provides basic functionality in order to show a logon information popup to the user.
NOTE: the password information is always masked by '*' and is therfore not displayed.
| Method Summary | |
boolean |
close()
|
static ILogonInformation |
getPasswordForUser(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message,
java.lang.String userName)
Convenience methode to diaplay a dialog in order to obtain the password for a specific pre-defined user. |
static ILogonInformation |
getPasswordForUser(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message,
java.lang.String userName,
java.lang.String defaultPassword)
Convenience methode to diaplay a dialog in order to obtain the password for a specific pre-defined user. |
static ILogonInformation |
getPasswordForUser(java.lang.String title,
java.lang.String message,
java.lang.String userName)
Convenience methode to diaplay a dialog in order to obtain the password for a specific pre-defined user. |
static ILogonInformation |
getPasswordForUser(java.lang.String title,
java.lang.String message,
java.lang.String userName,
java.lang.String defaultPassword)
Convenience methode to diaplay a dialog in order to obtain the password for a specific pre-defined user. |
static ILogonInformation |
getPasswordOnly(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message)
Convenience methode to diaplay a dialog in order to obtain only a password (e.g. for a fixed user). |
static ILogonInformation |
getPasswordOnly(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message,
java.lang.String defaultPassword)
Convenience methode to diaplay a dialog in order to obtain only a password (e.g. for a fixed user). |
static ILogonInformation |
getPasswordOnly(java.lang.String title,
java.lang.String message)
Convenience methode to diaplay a dialog in order to obtain only a password (e.g. for a fixed user). |
static ILogonInformation |
getPasswordOnly(java.lang.String title,
java.lang.String message,
java.lang.String defaultPassword)
Convenience methode to diaplay a dialog in order to obtain only a password (e.g. for a fixed user). |
static ILogonInformation |
getUserAndPassword(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message)
Convenience methode to display a dialog in order to obtain user name and password. |
static ILogonInformation |
getUserAndPassword(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message,
java.lang.String defaultUser)
Convenience methode to display a dialog in order to obtain user name and password. |
static ILogonInformation |
getUserAndPassword(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message,
java.lang.String defaultUserName,
java.lang.String defaultPassword)
Convenience methode to display a dialog in order to obtain user name and password. |
static ILogonInformation |
getUserAndPassword(java.lang.String title,
java.lang.String message)
Convenience methode to display a dialog in order to obtain user name and password. |
static ILogonInformation |
getUserAndPassword(java.lang.String title,
java.lang.String message,
java.lang.String defaultUser)
Convenience methode to display a dialog in order to obtain user name and password. |
static ILogonInformation |
getUserAndPassword(java.lang.String title,
java.lang.String message,
java.lang.String defaultUserName,
java.lang.String defaultPassword)
Convenience methode to display a dialog in order to obtain user name and password. |
| Method Detail |
public static ILogonInformation getUserAndPassword(java.lang.String title,
java.lang.String message)
title - of dialogmessage - to display
public static ILogonInformation getUserAndPassword(java.lang.String title,
java.lang.String message,
java.lang.String defaultUser)
title - of dialogmessage - to displaydefaultUser - to fill into the user text field
public static ILogonInformation getUserAndPassword(java.lang.String title,
java.lang.String message,
java.lang.String defaultUserName,
java.lang.String defaultPassword)
title - of dialogmessage - to displaydefaultUser - to fill into the user text fielddefaultPassword - to fill into the password text field
public static ILogonInformation getPasswordForUser(java.lang.String title,
java.lang.String message,
java.lang.String userName)
title - of dialogmessage - to displayuserName - of the user
public static ILogonInformation getPasswordForUser(java.lang.String title,
java.lang.String message,
java.lang.String userName,
java.lang.String defaultPassword)
title - of dialogmessage - to displayuserName - of the userdefaultPassword - to fill into the password text field
public static ILogonInformation getPasswordOnly(java.lang.String title,
java.lang.String message)
title - of dialogmessage - to displaynull if user pressed cancel
public static ILogonInformation getPasswordOnly(java.lang.String title,
java.lang.String message,
java.lang.String defaultPassword)
title - of dialogmessage - to displaydefaultPassword - to fill into the password text fieldnull if user pressed cancel
public static ILogonInformation getUserAndPassword(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message)
parent - the parent shell of the dialog, or null if nonetitle - of dialogmessage - to displaynull if user pressed cancel
public static ILogonInformation getUserAndPassword(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message,
java.lang.String defaultUser)
parent - the parent shell of the dialog, or null if nonetitle - of dialogmessage - to displaydefaultUser - to fill into the user text fieldnull if user pressed cancel
public static ILogonInformation getUserAndPassword(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message,
java.lang.String defaultUserName,
java.lang.String defaultPassword)
parent - the parent shell of the dialog, or null if nonetitle - of dialogmessage - to displaydefaultUser - to fill into the user text fielddefaultPassword - to fill into the password text fieldnull if user pressed cancel
public static ILogonInformation getPasswordForUser(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message,
java.lang.String userName)
parent - the parent shell of the dialog, or null if nonetitle - of dialogmessage - to displayuserName - of the usernull if user pressed cancel
public static ILogonInformation getPasswordForUser(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message,
java.lang.String userName,
java.lang.String defaultPassword)
parent - the parent shell of the dialog, or null if nonetitle - of dialogmessage - to displayuserName - of the userdefaultPassword - to fill into the password text fieldnull if user pressed cancel
public static ILogonInformation getPasswordOnly(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message)
parent - the parent shell of the dialog, or null if nonetitle - of dialogmessage - to displaynull if user pressed cancel
public static ILogonInformation getPasswordOnly(org.eclipse.swt.widgets.Shell parent,
java.lang.String title,
java.lang.String message,
java.lang.String defaultPassword)
parent - the parent shell of the dialog, or null if nonetitle - of dialogmessage - to displaydefaultPassword - to fill into the password text fieldnull if user pressed cancelpublic boolean close()
org.eclipse.jface.window.Window#close()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||