bugfix
This commit is contained in:
parent
e974bd65d9
commit
3303ace2f7
1 changed files with 6 additions and 0 deletions
|
|
@ -28,6 +28,7 @@ public class Folder extends DBBean{
|
||||||
protected transient User userInstance;
|
protected transient User userInstance;
|
||||||
private String path;
|
private String path;
|
||||||
protected Folder parent;
|
protected Folder parent;
|
||||||
|
protected Timestamp date;
|
||||||
private boolean isPrivate;
|
private boolean isPrivate;
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -67,6 +68,7 @@ public class Folder extends DBBean{
|
||||||
}
|
}
|
||||||
|
|
||||||
public Folder(){
|
public Folder(){
|
||||||
|
date = new Timestamp( System.currentTimeMillis() );
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getName(){
|
public String getName(){
|
||||||
|
|
@ -125,6 +127,10 @@ public class Folder extends DBBean{
|
||||||
return parent;
|
return parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Timestamp getDate(){
|
||||||
|
return date;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param filename is the name of the file
|
* @param filename is the name of the file
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue