1 package org.kuali.ole.describe.bo.marc.structuralfields.controlfield007;
2
3 /**
4 * Created with IntelliJ IDEA.
5 * User: jayabharathreddy
6 * Date: 7/15/13
7 * Time: 3:46 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class ControlField007Text {
11
12 private String rawText;
13
14 public String getRawText() {
15 return rawText;
16 }
17
18 public void setRawText(String rawText) {
19 this.rawText = rawText;
20 }
21 }