changed the package name to the domain name
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package de.geofroggerfx.model;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Id;
|
||||
|
||||
/**
|
||||
* This class represents the application settings, like current user, etc.
|
||||
*
|
||||
* @author abi
|
||||
*/
|
||||
@Entity
|
||||
public class Settings {
|
||||
|
||||
@Id
|
||||
private Long id;
|
||||
|
||||
private Long currentUserID = new Long(3906456);
|
||||
|
||||
public Long getCurrentUserID() {
|
||||
return currentUserID;
|
||||
}
|
||||
|
||||
public void setCurrentUserID(final Long currentUserID) {
|
||||
this.currentUserID = currentUserID;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user