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
31       *            the contentObject to set
32       */
33      public void setContentObject(Object contentObject) {
34          this.contentObject = contentObject;
35      }
36  
37      public Content(String content) {
38          this.content = content;
39      }
40  
41      public String getContent() {
42          return content;
43      }
44  
45      public void setContent(String content) {
46          this.content = content;
47      }
48  }