1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package net.sf.oxclient.beans;
17
18 import org.apache.commons.lang.builder.ToStringBuilder;
19
20
21
22
23
24
25 public class Folder extends OXBean {
26
27 private static final long serialVersionUID = -2551531366856147929L;
28
29 private boolean defaultFolder = false;
30 private String name = null;
31 private int type = 0;
32 private String module = null;
33
34 public String getModule() {
35 return this.module;
36 }
37
38 public void setModule(final String module) {
39 this.module = module;
40 }
41
42 public int getType() {
43 return this.type;
44 }
45
46 public void setType(final int type) {
47 this.type = type;
48 }
49
50 public String getName() {
51 return this.name;
52 }
53
54 public boolean isDefaultFolder() {
55 return this.defaultFolder;
56 }
57
58 public void setName(final String name) {
59 this.name = name;
60 }
61
62 public void setDefaultFolder(final boolean defaultFolder) {
63 this.defaultFolder = defaultFolder;
64 }
65
66
67
68
69 @Override
70 public String toString() {
71 return new ToStringBuilder(this).appendSuper(super.toString())
72 .append("type", this.type)
73 .append("module", this.module)
74 .append("name", this.name)
75 .append("defaultFolder", this.defaultFolder)
76 .toString();
77 }
78 }