Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package test.oracle.xml;
  2.  
  3. import org.w3c.dom.Document;
  4.  
  5. public class XMLBean {
  6.  
  7.     private Long id = null;
  8.  
  9.     private Document xmlDoc = null;
  10.  
  11.     public Long getId() {
  12.         return id;
  13.     }
  14.  
  15.     public void setId(Long id) {
  16.         this.id = id;
  17.     }
  18.  
  19.     public Document getXmlDoc() {
  20.         return xmlDoc;
  21.     }
  22.  
  23.     public void setXmlDoc(Document xmlDoc) {
  24.         this.xmlDoc = xmlDoc;
  25.     }
  26.  
  27. }