001package org.kuali.ole.describe.bo.marc.structuralfields.controlfield007; 002 003/** 004 * Class for handling control field 007 format 'Remote Sensing Image' 005 */ 006public class RemoteSensingImage { 007 private String specificMaterialDesignation = "u"; 008 private String undefined = "#"; 009 private String altitudeOfSensor = "u"; 010 private String attitudeOfSensor = "u"; 011 private String cloudCover = "u"; 012 private String constructionType = "u"; 013 private String category = "u"; 014 private String sensorType = "u"; 015 private String dataType ="uu"; 016 017 public String getSpecificMaterialDesignation() { 018 return specificMaterialDesignation; 019 } 020 021 public void setSpecificMaterialDesignation(String specificMaterialDesignation) { 022 this.specificMaterialDesignation = specificMaterialDesignation; 023 } 024 025 public String getUndefined() { 026 return undefined; 027 } 028 029 public void setUndefined(String undefined) { 030 this.undefined = undefined; 031 } 032 033 public String getAltitudeOfSensor() { 034 return altitudeOfSensor; 035 } 036 037 public void setAltitudeOfSensor(String altitudeOfSensor) { 038 this.altitudeOfSensor = altitudeOfSensor; 039 } 040 041 public String getAttitudeOfSensor() { 042 return attitudeOfSensor; 043 } 044 045 public void setAttitudeOfSensor(String attitudeOfSensor) { 046 this.attitudeOfSensor = attitudeOfSensor; 047 } 048 049 public String getCloudCover() { 050 return cloudCover; 051 } 052 053 public void setCloudCover(String cloudCover) { 054 this.cloudCover = cloudCover; 055 } 056 057 public String getConstructionType() { 058 return constructionType; 059 } 060 061 public void setConstructionType(String constructionType) { 062 this.constructionType = constructionType; 063 } 064 065 public String getCategory() { 066 return category; 067 } 068 069 public void setCategory(String category) { 070 this.category = category; 071 } 072 073 public String getSensorType() { 074 return sensorType; 075 } 076 077 public void setSensorType(String sensorType) { 078 this.sensorType = sensorType; 079 } 080 081 public String getDataType() { 082 return dataType; 083 } 084 085 public void setDataType(String dataType) { 086 this.dataType = dataType; 087 } 088}