01: package org.claros.intouch.webmail.models;
02:
03: /**
04: * @author Umut Gokbayrak
05: */
06: public class FolderDbObject {
07: protected Long id;
08: protected String username;
09: protected Long parentId;
10: protected String folderName;
11: protected Integer folderType;
12:
13: public FolderDbObject() {
14: super ();
15: }
16:
17: public FolderDbObject(Long id, Long parentId, String user,
18: String folderName, Integer type) {
19: this .id = id;
20: this .parentId = parentId;
21: this .username = user;
22: this .folderName = folderName;
23: this .folderType = type;
24: }
25:
26: public String getFolderName() {
27: return folderName;
28: }
29:
30: public void setFolderName(String folderName) {
31: this .folderName = folderName;
32: }
33:
34: public Integer getFolderType() {
35: return folderType;
36: }
37:
38: public void setFolderType(Integer folderType) {
39: this .folderType = folderType;
40: }
41:
42: public Long getId() {
43: return id;
44: }
45:
46: public void setId(Long id) {
47: this .id = id;
48: }
49:
50: public Long getParentId() {
51: return parentId;
52: }
53:
54: public void setParentId(Long parentId) {
55: this .parentId = parentId;
56: }
57:
58: public String getUsername() {
59: return username;
60: }
61:
62: public void setUsername(String username) {
63: this.username = username;
64: }
65:
66: }
|