Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
e2ae30e55bc2a997923463dd2a1274c67fdc73a6
1
2
3
4
5
6
7
8
9
10
11
package businessLogic;

import domain.Owner;

public interface LoginManagerInterface {
	
	public Owner checkCredentials(String usr, String pwd);
	
	
	
}

Commits for RRRRHHHH_CoderuralHouses/src/businessLogic/LoginManagerInterface.java

Diff revisions: vs.
Revision Author Commited Message
e2ae30 ... Diff Diff Eneko Pinzolas Murua Tue 14 Apr, 2015 15:07:35 +0000

imports leaned

1a30ae ... epinzolas001 Fri 27 Feb, 2015 11:59:29 +0000

Introduced Login Manager logic by creating the LoginManager and the LoginManagerInterface