001package org.kuali.ole.describe.bo.marc.structuralfields.controlfield006; 002 003/** 004 * Created with IntelliJ IDEA. 005 * User: jayabharathreddy 006 * Date: 6/20/13 007 * Time: 5:49 PM 008 * To change this template use File | Settings | File Templates. 009 */ 010public class Map { 011 012 private String relief = "#"; 013 private String projection = "##"; 014 private String undefinedPos8 = "#"; 015 private String undefinedPos7 = "#"; 016 private String undefinedPos4 = "#"; 017 018 private String undefinedPos2 = "##"; 019 020 private String typeOfCartographicMaterial = "a"; 021 private String governmentPublication = "#"; 022 private String formOfItem = "#"; 023 private String index = "0"; 024 private String specialFormatCharacteristics = "#"; 025 026 public String getUndefinedPos2() { 027 return undefinedPos2; 028 } 029 030 public void setUndefinedPos2(String undefinedPos2) { 031 this.undefinedPos2 = undefinedPos2; 032 } 033 034 public String getProjection() { 035 return projection; 036 } 037 038 public void setProjection(String projection) { 039 projection = projection; 040 } 041 042 public String getRelief() { 043 return relief; 044 } 045 046 public void setRelief(String relief) { 047 this.relief = relief; 048 } 049 050 public String getUndefinedPos8() { 051 return undefinedPos8; 052 } 053 054 public void setUndefinedPos8(String undefinedPos8) { 055 this.undefinedPos8 = undefinedPos8; 056 } 057 058 public String getUndefinedPos7() { 059 return undefinedPos7; 060 } 061 062 public void setUndefinedPos7(String undefinedPos7) { 063 this.undefinedPos7 = undefinedPos7; 064 } 065 066 public String getUndefinedPos4() { 067 return undefinedPos4; 068 } 069 070 public void setUndefinedPos4(String undefinedPos4) { 071 this.undefinedPos4 = undefinedPos4; 072 } 073 074 public String getTypeOfCartographicMaterial() { 075 return typeOfCartographicMaterial; 076 } 077 078 public void setTypeOfCartographicMaterial(String typeOfCartographicMaterial) { 079 this.typeOfCartographicMaterial = typeOfCartographicMaterial; 080 } 081 082 public String getGovernmentPublication() { 083 return governmentPublication; 084 } 085 086 public void setGovernmentPublication(String governmentPublication) { 087 this.governmentPublication = governmentPublication; 088 } 089 090 public String getFormOfItem() { 091 return formOfItem; 092 } 093 094 public void setFormOfItem(String formOfItem) { 095 this.formOfItem = formOfItem; 096 } 097 098 public String getIndex() { 099 return index; 100 } 101 102 public void setIndex(String index) { 103 this.index = index; 104 } 105 106 public String getSpecialFormatCharacteristics() { 107 return specialFormatCharacteristics; 108 } 109 110 public void setSpecialFormatCharacteristics(String specialFormatCharacteristics) { 111 this.specialFormatCharacteristics = specialFormatCharacteristics; 112 } 113 114 115}