com.github.athi.athifx.gui.application.AthiFXSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athi-fx-gui Show documentation
Show all versions of athi-fx-gui Show documentation
AthiFX project for creating JavaFX simple application GUI.
The newest version!
package com.github.athi.athifx.gui.application;
import com.github.athi.athifx.gui.security.User;
import javax.enterprise.context.SessionScoped;
import java.io.Serializable;
/**
* Created by Athi
*/
@SessionScoped
public class AthiFXSession implements Serializable {
private User user;
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy