Package com.storedobject.ui
Interface PostLogin
public interface PostLogin
If class that implements this interface is configured, it will be instantiated and queried when the user
logs in.
- Author:
- Syam
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Check whether the user can really use the current application that he/she has already logged in.void
This method is invoked only ifcanLogin(TransactionManager)
returnsfalse
.
-
Method Details
-
canLogin
Check whether the user can really use the current application that he/she has already logged in. Iffalse
is returned from this,informUser()
will be invoked to inform this fact to the user or close the application so that access is restricted.- Parameters:
tm
- Current transaction manager.- Returns:
- True/false.
-
informUser
void informUser()This method is invoked only ifcanLogin(TransactionManager)
returnsfalse
. Typically, the user may be notified about it and the application may be closed at this point.
-