本文整理汇总了Java中com.openbravo.beans.JPasswordDialog类的典型用法代码示例。如果您正苦于以下问题:Java JPasswordDialog类的具体用法?Java JPasswordDialog怎么用?Java JPasswordDialog使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
JPasswordDialog类属于com.openbravo.beans包,在下文中一共展示了JPasswordDialog类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: changePassword
import com.openbravo.beans.JPasswordDialog; //导入依赖的package包/类
public static String changePassword(Component parent) {
// Show the changePassword dialogs but do not check the old password
String sPassword = JPasswordDialog.showEditPassword(parent,
AppLocal.getIntString("Label.Password"),
AppLocal.getIntString("label.passwordnew"),
new ImageIcon(Hashcypher.class.getResource("/com/openbravo/images/password.png")));
if (sPassword != null) {
String sPassword2 = JPasswordDialog.showEditPassword(parent,
AppLocal.getIntString("Label.Password"),
AppLocal.getIntString("label.passwordrepeat"),
new ImageIcon(Hashcypher.class.getResource("/com/openbravo/images/password.png")));
if (sPassword2 != null) {
if (sPassword.equals(sPassword2)) {
return Hashcypher.hashString(sPassword);
} else {
JOptionPane.showMessageDialog(parent, AppLocal.getIntString("message.changepassworddistinct"), AppLocal.getIntString("message.title"), JOptionPane.WARNING_MESSAGE);
}
}
}
return null;
}
示例2: actionPerformed
import com.openbravo.beans.JPasswordDialog; //导入依赖的package包/类
@Override
public void actionPerformed(ActionEvent evt) {
// String sPassword = m_actionuser.getPassword();
if (m_actionuser.authenticate()) {
// p'adentro directo, no tiene password
openAppView(m_actionuser);
} else {
// comprobemos la clave antes de entrar...
String sPassword = JPasswordDialog.showEditPassword(JRootApp.this,
AppLocal.getIntString("Label.Password"),
m_actionuser.getName(),
m_actionuser.getIcon());
if (sPassword != null) {
if (m_actionuser.authenticate(sPassword)) {
openAppView(m_actionuser);
} else {
MessageInf msg = new MessageInf(MessageInf.SGN_WARNING, AppLocal.getIntString("message.BadPassword"));
msg.show(JRootApp.this);
}
}
}
}
示例3: changePassword
import com.openbravo.beans.JPasswordDialog; //导入依赖的package包/类
/**
*
* @param parent
* @return
*/
public static String changePassword(Component parent) {
// Show the changePassword dialogs but do not check the old password
String sPassword = JPasswordDialog.showEditPassword(parent,
AppLocal.getIntString("Label.Password"),
AppLocal.getIntString("label.passwordnew"),
new ImageIcon(Hashcypher.class.getResource("/com/openbravo/images/password.png")));
if (sPassword != null) {
String sPassword2 = JPasswordDialog.showEditPassword(parent,
AppLocal.getIntString("Label.Password"),
AppLocal.getIntString("label.passwordrepeat"),
new ImageIcon(Hashcypher.class.getResource("/com/openbravo/images/password.png")));
if (sPassword2 != null) {
if (sPassword.equals(sPassword2)) {
return Hashcypher.hashString(sPassword);
} else {
JOptionPane.showMessageDialog(parent, AppLocal.getIntString("message.changepassworddistinct"), AppLocal.getIntString("message.title"), JOptionPane.WARNING_MESSAGE);
}
}
}
return null;
}
示例4: actionPerformed
import com.openbravo.beans.JPasswordDialog; //导入依赖的package包/类
@Override
public void actionPerformed(ActionEvent evt) {
// String sPassword = m_actionuser.getPassword();
if (m_actionuser.authenticate()) {
// p'adentro directo, no tiene password
openAppView(m_actionuser);
} else {
// comprobemos la clave antes de entrar...
String sPassword = JPasswordDialog.showEditPassword(JRootApp.this,
AppLocal.getIntString("Label.Password"),
m_actionuser.getName(),
m_actionuser.getIcon());
if (sPassword != null) {
if (m_actionuser.authenticate(sPassword)) {
openAppView(m_actionuser);
} else {
MessageInf msg = new MessageInf(MessageInf.SGN_WARNING, AppLocal.getIntString("message.BadPassword"));
msg.show(JRootApp.this);
}
}
}
}