1 package org.kuali.ole.deliver.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5
6
7
8
9
10
11
12 public class CopyFormat extends PersistableBusinessObjectBase {
13 private String copyFormatId;
14 private String code;
15 private String name;
16 private boolean active;
17
18 public String getCopyFormatId() {
19 return copyFormatId;
20 }
21
22 public void setCopyFormatId(String copyFormatId) {
23 this.copyFormatId = copyFormatId;
24 }
25
26 public String getCode() {
27 return code;
28 }
29
30 public void setCode(String code) {
31 this.code = code;
32 }
33
34 public String getName() {
35 return name;
36 }
37
38 public void setName(String name) {
39 this.name = name;
40 }
41
42
43
44
45
46
47 public boolean isActive() {
48 return active;
49 }
50
51
52
53
54
55
56 public void setActive(boolean active) {
57 this.active = active;
58 }
59
60
61 }