1 package org.kuali.ole.describe.bo.marc.structuralfields.controlfield006;
2
3
4
5
6
7
8
9
10 public class ComputerFiles {
11
12 private String undefinedPos4 = "####";
13 private String undefinedPos6 = "######";
14 private String undefinedPos2 = "##";
15
16 private String undefined = "#";
17 private String targetAudience = "#";
18 private String formOfItem = "#";
19 private String typeOfComputerFile = "u";
20 private String governmentPublication = "#";
21
22 public String getUndefinedPos4() {
23 return undefinedPos4;
24 }
25
26 public void setUndefinedPos4(String undefinedPos4) {
27 this.undefinedPos4 = undefinedPos4;
28 }
29
30 public String getUndefinedPos6() {
31 return undefinedPos6;
32 }
33
34 public void setUndefinedPos6(String undefinedPos6) {
35 this.undefinedPos6 = undefinedPos6;
36 }
37
38 public String getUndefinedPos2() {
39 return undefinedPos2;
40 }
41
42 public void setUndefinedPos2(String undefinedPos2) {
43 this.undefinedPos2 = undefinedPos2;
44 }
45
46 public String getUndefined() {
47 return undefined;
48 }
49
50 public void setUndefined(String undefined) {
51 this.undefined = undefined;
52 }
53
54 public String getTargetAudience() {
55 return targetAudience;
56 }
57
58 public void setTargetAudience(String targetAudience) {
59 this.targetAudience = targetAudience;
60 }
61
62 public String getFormOfItem() {
63 return formOfItem;
64 }
65
66 public void setFormOfItem(String formOfItem) {
67 this.formOfItem = formOfItem;
68 }
69
70 public String getTypeOfComputerFile() {
71 return typeOfComputerFile;
72 }
73
74 public void setTypeOfComputerFile(String typeOfComputerFile) {
75 this.typeOfComputerFile = typeOfComputerFile;
76 }
77
78 public String getGovernmentPublication() {
79 return governmentPublication;
80 }
81
82 public void setGovernmentPublication(String governmentPublication) {
83 this.governmentPublication = governmentPublication;
84 }
85
86
87 }