- java.lang.Object
-
- services.AuthService
-
- services.AuthStudentService
-
- services.AuthCommitteeService
-
- All Implemented Interfaces:
IAuthService
public class AuthCommitteeService extends AuthStudentService
AuthCommitteeServiceextendsAuthStudentServiceand provides authentication functions for Committee.
-
-
Constructor Summary
Constructors Constructor Description AuthCommitteeService()Construct an instance ofAuthCommitteeService
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidlogin(java.lang.String userID)Logs in a user with userIDvoidlogout(java.lang.String userID)Log out of committee member user-
Methods inherited from class services.AuthStudentService
login
-
Methods inherited from class services.AuthService
authenticate, logout
-
-
-
-
Constructor Detail
-
AuthCommitteeService
public AuthCommitteeService()
Construct an instance ofAuthCommitteeService
-
-
Method Detail
-
login
public void login(java.lang.String userID)
Description copied from interface:IAuthServiceLogs in a user with userID- Parameters:
userID- Identifier of the user
-
logout
public void logout(java.lang.String userID)
Log out of committee member user- Parameters:
userID- the current logged inStudentuser
-
-