001package org.kuali.ole.docstore.model.xmlpojo.ingest; 002 003/** 004 * Created by IntelliJ IDEA. 005 * User: pvsubrah 006 * Date: 2/9/12 007 * Time: 9:30 PM 008 * To change this template use File | Settings | File Templates. 009 */ 010public class Content { 011 private String content; 012 private Object contentObject; 013 014 public Content() { 015 016 } 017 018 /** 019 * Method to get contentObject. 020 * 021 * @return the contentObject 022 */ 023 public Object getContentObject() { 024 return contentObject; 025 } 026 027 /** 028 * Method to set contentObject. 029 * 030 * @param contentObject the contentObject to set 031 */ 032 public void setContentObject(Object contentObject) { 033 this.contentObject = contentObject; 034 } 035 036 public Content(String content) { 037 this.content = content; 038 } 039 040 public String getContent() { 041 return content; 042 } 043 044 public void setContent(String content) { 045 this.content = content; 046 } 047}