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;
|
||||
private String path;
|
||||
protected Folder parent;
|
||||
protected Timestamp date;
|
||||
private boolean isPrivate;
|
||||
|
||||
|
||||
|
|
@ -67,6 +68,7 @@ public class Folder extends DBBean{
|
|||
}
|
||||
|
||||
public Folder(){
|
||||
date = new Timestamp( System.currentTimeMillis() );
|
||||
}
|
||||
|
||||
public String getName(){
|
||||
|
|
@ -125,6 +127,10 @@ public class Folder extends DBBean{
|
|||
return parent;
|
||||
}
|
||||
|
||||
public Timestamp getDate(){
|
||||
return date;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param filename is the name of the file
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue