Log In | Get Help   
Home My Page Projects Code Snippets Project Openings Accounting and Billing Portal
Summary Activity Forums Tracker Lists Tasks Docs Surveys News SCM Files
[abportal] View of /src/main/java/eu/smartlm/abs/portal/view/event/LoginEventData.java
[abportal] / src / main / java / eu / smartlm / abs / portal / view / event / LoginEventData.java Repository:
ViewVC logotype

View of /src/main/java/eu/smartlm/abs/portal/view/event/LoginEventData.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (download) (annotate)
Wed Jul 28 10:05:51 2010 UTC (13 years, 9 months ago) by dgarcia
File size: 780 byte(s)
First code commit
package eu.smartlm.abs.portal.view.event;

import java.io.Serializable;

import eu.smartlm.abs.portal.security.login.model.User;

/**
 * Event data that is sended to all the accounting and billing portlets when a user logs in
 * @author David García Pérez - CESGA
 */
public class LoginEventData implements Serializable {
	private static final long serialVersionUID = 3984754800439847340L;
	private int status;
	private User user;
	
	public LoginEventData() {}
	
	public LoginEventData(int status, User user) {
		this.setStatus(status);
		this.setUser(user);
	}

	public void setUser(User user) {
		this.user = user;
	}

	public User getUser() {
		return user;
	}

	public void setStatus(int status) {
		this.status = status;
	}

	public int getStatus() {
		return status;
	}
}

root@forge.cesga.es
ViewVC Help
Powered by ViewVC 1.0.0  

Powered By FusionForge