Package de.xima.fc.gui.common.event
Class LoginEvent
- java.lang.Object
-
- de.xima.fc.gui.common.event.LoginEvent
-
- All Implemented Interfaces:
IApplicationEvent
,ISessionEvent
,Serializable
public class LoginEvent extends Object implements ISessionEvent
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LoginEvent(Benutzer user, LoginModel login)
LoginEvent(Benutzer user, LoginModel login, Long processId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LoginModel
getLogin()
Long
getProcessId()
Benutzer
getUser()
void
setLogin(LoginModel login)
void
setProcessId(Long processId)
void
setUser(Benutzer user)
-
-
-
Constructor Detail
-
LoginEvent
public LoginEvent(Benutzer user, LoginModel login)
- Parameters:
user
- the Benutzer which logged inlogin
- theLoginModel
of the login
-
LoginEvent
public LoginEvent(Benutzer user, LoginModel login, Long processId)
- Parameters:
user
- the Benutzer which logged inlogin
- theLoginModel
of the loginprocessId
- the if of the process
-
-
Method Detail
-
getUser
public Benutzer getUser()
- Returns:
- the user
-
setUser
public void setUser(Benutzer user)
- Parameters:
user
- the user to set
-
getLogin
public LoginModel getLogin()
- Returns:
- the login
-
setLogin
public void setLogin(LoginModel login)
- Parameters:
login
- the login to set
-
getProcessId
public Long getProcessId()
- Returns:
- the processId
-
setProcessId
public void setProcessId(Long processId)
- Parameters:
processId
- the processId to set
-
-