1 package org.kuali.ole.describe.bo.marc.structuralfields.controlfield007;
2
3
4
5
6 public class Map {
7 private String materialDesignation = "u";
8 private String undefined = "#";
9 private String color = "a";
10 private String physicalMedium = "u";
11 private String typeOfReproduction = "n";
12 private String productionDetails = "u";
13 private String positiveOrNegativeAspect = "n";
14
15 public String getMaterialDesignation() {
16 return materialDesignation;
17 }
18
19 public void setMaterialDesignation(String materialDesignation) {
20 this.materialDesignation = materialDesignation;
21 }
22
23 public String getUndefined() {
24 return undefined;
25 }
26
27 public void setUndefined(String undefined) {
28 this.undefined = undefined;
29 }
30
31 public String getColor() {
32 return color;
33 }
34
35 public void setColor(String color) {
36 this.color = color;
37 }
38
39 public String getPhysicalMedium() {
40 return physicalMedium;
41 }
42
43 public void setPhysicalMedium(String physicalMedium) {
44 this.physicalMedium = physicalMedium;
45 }
46
47 public String getTypeOfReproduction() {
48 return typeOfReproduction;
49 }
50
51 public void setTypeOfReproduction(String typeOfReproduction) {
52 this.typeOfReproduction = typeOfReproduction;
53 }
54
55 public String getProductionDetails() {
56 return productionDetails;
57 }
58
59 public void setProductionDetails(String productionDetails) {
60 this.productionDetails = productionDetails;
61 }
62
63 public String getPositiveOrNegativeAspect() {
64 return positiveOrNegativeAspect;
65 }
66
67 public void setPositiveOrNegativeAspect(String positiveOrNegativeAspect) {
68 this.positiveOrNegativeAspect = positiveOrNegativeAspect;
69 }
70 }