1 24 30 31 package org.datashare; 32 33 import java.util.Hashtable ; 34 35 44 public class PersistDataQueueObject 45 { 46 50 String tableName = ""; 51 52 58 Hashtable props = new Hashtable (); 59 60 66 PersistDataCallbackInterface callback = null; 67 68 77 PersistDataQueueObject(String tableName, Hashtable props, PersistDataCallbackInterface callback) 78 { 79 this.tableName = tableName; 80 this.props = props; 81 this.callback = callback; 82 } 83 84 89 public String 90 getTableName() 91 { 92 return tableName; 93 } 94 95 100 public Hashtable 101 getProperties() 102 { 103 return props; 104 } 105 106 111 public PersistDataCallbackInterface 112 getCallback() 113 { 114 return callback; 115 } 116 } 117 | Popular Tags |