Solo deseamos que tenga los botones de Aceptar y Cancelar habilitados, para ello modificamos el
método createLoginDialog().
private void createLoginDialog(){
JButton ok = new JButton();
ok.setText("OK");
JButton cancel = new JButton();
cancel.setText("Cancel");
cancel.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//close whole application
}
});
ok.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//authenicate username and password
}
});
NotifyDescriptor nd = new NotifyDescriptor.Confirmation(form, "Login");
nd.setOptions(new Object[]{ok, cancel});
DialogDisplayer.getDefault().notifyLater(nd);
}
método createLoginDialog().
private void createLoginDialog(){
JButton ok = new JButton();
ok.setText("OK");
JButton cancel = new JButton();
cancel.setText("Cancel");
cancel.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//close whole application
}
});
ok.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//authenicate username and password
}
});
NotifyDescriptor nd = new NotifyDescriptor.Confirmation(form, "Login");
nd.setOptions(new Object[]{ok, cancel});
DialogDisplayer.getDefault().notifyLater(nd);
}
Corregimos las importaciones
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
Agregamos el codigo para el botón Cancel, agregango exit();
cancel.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//close whole application
exit();
}
});
Ahora creamos el metodo exit()
importamos
Código completo
Para cerrar la aplicación al presionar la X en la ventana agregamos el código
nd.addPropertyChangeListener(new PropertyChangeListener(){
public void propertyChange(PropertyChangeEvent evt){
if(NotifyDescriptor.CLOSED_OPTION.equals(evt.getNewValue())){
exit();
}
}
});
Editar LoginFrame.java y agregar
public String getUsername(){
return this.jTextFieldUser.getText();
}
public String getPassword(){
return this.jPasswordField.getPassword().toString();
}
Ahora nos ubicamos en el modulo UserMagnament
Buscamos las propiedades del proyecto
Marcamos el paquete org.avbravo.UserMagnament como publico.
Editamos UserMagnamentPanel.java, y cambiamos la definición de la clase agregandole
public
Ahora editamos las propiedades del modulo login
En bibliotecas seleccionamos Añadir Dependencias
Seleccionamos UserMaganment de la lista, presionamos el botón Aceptar
Se muestra la dependencia agregada
Editamos Installer.java
Agregamos
NotifyDescriptor d;
int msgTypeError = NotifyDescriptor.ERROR_MESSAGE;
int msgType = NotifyDescriptor.INFORMATION_MESSAGE;
Y Creamos el método
private boolean authenticate() {
if (NbPreferences.forModule(UserMagnamentPanel.class).get("user", "").equals(this.form.getUsername()))
{
try {
String passwordFromForm = null;
String passwordFromPref = NbPreferences.forModule(UserMagnamentPanel.class).get("pass",
"").toString();
String passwordPref = new String(this.form.getPassword());
if (passwordPref.equals(passwordFromPref)) {
d = new NotifyDescriptor.Message("El password es correcto", msgType);
DialogDisplayer.getDefault().notify(d);
} else {
d = new NotifyDescriptor.Message("El password no es correcto", msgType);
DialogDisplayer.getDefault().notify(d);
exit();
}
//do nothing here
// } else {
// exit();
// }
} catch (Exception ex) {
Exceptions.printStackTrace(ex);
d = new NotifyDescriptor.Message("authenticate() " + ex.getLocalizedMessage().toString(),
msgTypeError);
DialogDisplayer.getDefault().notify(d);
}
} else {
d = new NotifyDescriptor.Message("El usuario no es correcto", msgType);
DialogDisplayer.getDefault().notify(d);
exit();
}
return false;
}
Corregimos las importaciones
Con esto al ejecutar el programa nos validara el login. Que sera almacenado en las Opciones.
Comments