diff options
| author | tspitzer | 2013-09-24 14:36:46 +0200 |
|---|---|---|
| committer | tspitzer | 2013-09-24 14:36:46 +0200 |
| commit | d18baddc7d17675d8bf6352d47e58a53e3f878e4 (patch) | |
| tree | 0a7a76599a97861fae2e91e427486e550c2ef851 /Dozentenmodul/src/GUI/LoginWindow.java | |
| parent | g (diff) | |
| download | tutor-module-d18baddc7d17675d8bf6352d47e58a53e3f878e4.tar.gz tutor-module-d18baddc7d17675d8bf6352d47e58a53e3f878e4.tar.xz tutor-module-d18baddc7d17675d8bf6352d47e58a53e3f878e4.zip | |
Erste Version fast fertig
Diffstat (limited to 'Dozentenmodul/src/GUI/LoginWindow.java')
| -rw-r--r-- | Dozentenmodul/src/GUI/LoginWindow.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Dozentenmodul/src/GUI/LoginWindow.java b/Dozentenmodul/src/GUI/LoginWindow.java index 4f9268ef..3b292e42 100644 --- a/Dozentenmodul/src/GUI/LoginWindow.java +++ b/Dozentenmodul/src/GUI/LoginWindow.java @@ -13,7 +13,6 @@ import javax.swing.border.EmptyBorder; import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.JButton;
-import auth.Ldap;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JPasswordField;
@@ -107,8 +106,9 @@ public class LoginWindow extends JFrame { BtnLogin.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//Aufruf der Ldap Klasse, welche die Ldap überprüfung vornimmt
- Ldap check=new Ldap();
- boolean login=check.LdapAuth(username.getText(), new String(pass.getPassword()));
+ //Ldap check=new Ldap();
+ boolean login=true;
+ //boolean login=check.LdapAuth(username.getText(), new String(pass.getPassword()));
if(login==true)
{
|
