This repository has been archived on 2026-04-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2014-05-17 07:18:37 +02:00
|
|
|
package de.geofroggerfx.model;
|
2013-09-27 20:30:35 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This class represents the application settings, like current user, etc.
|
|
|
|
|
*
|
|
|
|
|
* @author abi
|
|
|
|
|
*/
|
|
|
|
|
public class Settings {
|
|
|
|
|
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
private Long currentUserID = new Long(3906456);
|
|
|
|
|
|
|
|
|
|
public Long getCurrentUserID() {
|
|
|
|
|
return currentUserID;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCurrentUserID(final Long currentUserID) {
|
|
|
|
|
this.currentUserID = currentUserID;
|
|
|
|
|
}
|
|
|
|
|
}
|