1 package org.kuali.ole.docstore.common.document.config;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.io.Serializable;
6
7
8
9
10
11
12
13
14 public class ConfigDocument extends PersistableBusinessObjectBase
15 implements Serializable {
16
17 private Integer id;
18 private String name;
19 private String label;
20 private String description;
21
22 public String getLabel() {
23 return label;
24 }
25
26 public void setLabel(String label) {
27 this.label = label;
28 }
29
30 public Integer getId() {
31 return id;
32 }
33
34 public void setId(Integer id) {
35 this.id = id;
36 }
37
38 public String getName() {
39 return name;
40 }
41
42 public void setName(String name) {
43 this.name = name;
44 }
45
46 public String getDescription() {
47 return description;
48 }
49
50 public void setDescription(String description) {
51 this.description = description;
52 }
53 }