001package org.kuali.ole.describe.bo.marc.structuralfields.controlfield008; 002 003/** 004 * Created with IntelliJ IDEA. 005 * User: jayabharathreddy 006 * Date: 6/24/13 007 * Time: 1:32 PM 008 * To change this template use File | Settings | File Templates. 009 */ 010public class MixedMaterial { 011 012 private String undefinedPos5 = "#####"; 013 private String undefinedPos10 = "###########"; 014 private String formOfItem; 015 016 public String getUndefinedPos5() { 017 return undefinedPos5; 018 } 019 020 public void setUndefinedPos5(String undefinedPos5) { 021 this.undefinedPos5 = undefinedPos5; 022 } 023 024 public String getUndefinedPos10() { 025 return undefinedPos10; 026 } 027 028 public void setUndefinedPos10(String undefinedPos10) { 029 this.undefinedPos10 = undefinedPos10; 030 } 031 032 public String getFormOfItem() { 033 return formOfItem; 034 } 035 036 public void setFormOfItem(String formOfItem) { 037 this.formOfItem = formOfItem; 038 } 039}