001package org.kuali.ole.describe.bo.marc.structuralfields.controlfield007;
002
003/**
004 * Class for handling control field 007 format 'Electronic Resources'
005 */
006public class ElectronicResource {
007
008    private String specificMaterialDesignation = "u";
009    private String color = "|";
010    private String dimensions = "|";
011    private String sound = "#";
012    private String imageBitDepth = "|||";
013    private String fileFormats = "u";
014    private String qualityAssuranceTargets = "u";
015    private String source = "u";
016    private String levelOfCompression = "u";
017    private String reformattingQuality = "u";
018    private String undefined= "#";
019
020    public String getUndefined() {
021        return undefined;
022    }
023
024    public void setUndefined(String undefined) {
025        this.undefined = undefined;
026    }
027
028    public String getSpecificMaterialDesignation() {
029        return specificMaterialDesignation;
030    }
031
032    public void setSpecificMaterialDesignation(String specificMaterialDesignation) {
033        this.specificMaterialDesignation = specificMaterialDesignation;
034    }
035
036    public String getColor() {
037        return color;
038    }
039
040    public void setColor(String color) {
041        this.color = color;
042    }
043
044    public String getDimensions() {
045        return dimensions;
046    }
047
048    public void setDimensions(String dimensions) {
049        this.dimensions = dimensions;
050    }
051
052    public String getSound() {
053        return sound;
054    }
055
056    public void setSound(String sound) {
057        this.sound = sound;
058    }
059
060    public String getImageBitDepth() {
061        return imageBitDepth;
062    }
063
064    public void setImageBitDepth(String imageBitDepth) {
065        this.imageBitDepth = imageBitDepth;
066    }
067
068    public String getFileFormats() {
069        return fileFormats;
070    }
071
072    public void setFileFormats(String fileFormats) {
073        this.fileFormats = fileFormats;
074    }
075
076    public String getQualityAssuranceTargets() {
077        return qualityAssuranceTargets;
078    }
079
080    public void setQualityAssuranceTargets(String qualityAssuranceTargets) {
081        this.qualityAssuranceTargets = qualityAssuranceTargets;
082    }
083
084    public String getSource() {
085        return source;
086    }
087
088    public void setSource(String source) {
089        this.source = source;
090    }
091
092    public String getLevelOfCompression() {
093        return levelOfCompression;
094    }
095
096    public void setLevelOfCompression(String levelOfCompression) {
097        this.levelOfCompression = levelOfCompression;
098    }
099
100    public String getReformattingQuality() {
101        return reformattingQuality;
102    }
103
104    public void setReformattingQuality(String reformattingQuality) {
105        this.reformattingQuality = reformattingQuality;
106    }
107}