- java.lang.Object
-
- services.AuthService
-
- services.AuthStudentService
-
- services.AuthCommitteeService
-
- All Implemented Interfaces:
IAuthService
public class AuthCommitteeService extends AuthStudentService
AuthCommitteeService
extendsAuthStudentService
and 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 void
login(java.lang.String userID)
Logs in a user with userIDvoid
logout(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:IAuthService
Logs 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 inStudent
user
-
-