1
2
3
4
5
6
7
8 package com.buckosoft.PicMan.domain;
9
10
11
12
13
14
15 public class Root {
16 private int rid;
17 private String name;
18 private String path;
19 private String filePrefix;
20 private boolean active = true;
21
22
23
24
25 public String getName() {
26 return name;
27 }
28
29
30
31 public void setName(String name) {
32 this.name = name;
33 }
34
35
36
37 public String getPath() {
38 return path;
39 }
40
41
42
43 public void setPath(String path) {
44 this.path = path;
45 }
46
47
48
49
50 public String getFilePrefix() {
51 return filePrefix;
52 }
53
54
55
56 public void setFilePrefix(String filePrefix) {
57 this.filePrefix = filePrefix;
58 }
59
60
61
62 public int getRid() {
63 return rid;
64 }
65
66
67
68 public void setRid(int rid) {
69 this.rid = rid;
70 }
71
72
73
74 public boolean isActive() {
75 return active;
76 }
77
78
79
80 public void setActive(boolean active) {
81 this.active = active;
82 }
83 }