View Javadoc
1   package org.kuali.ole.docstore.model.xmlpojo.ingest;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: pvsubrah
6    * Date: 2/9/12
7    * Time: 9:30 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class Content {
11      private String content;
12      private Object contentObject;
13  
14      public Content() {
15  
16      }
17  
18      /**
19       * Method to get contentObject.
20       *
21       * @return the contentObject
22       */
23      public Object getContentObject() {
24          return contentObject;
25      }
26  
27      /**
28       * Method to set contentObject.
29       *
30       * @param contentObject the contentObject to set
31       */
32      public void setContentObject(Object contentObject) {
33          this.contentObject = contentObject;
34      }
35  
36      public Content(String content) {
37          this.content = content;
38      }
39  
40      public String getContent() {
41          return content;
42      }
43  
44      public void setContent(String content) {
45          this.content = content;
46      }
47  }