/**
  * Convenience to set the table. To be used in cases where the table isn't known until after the
  * initial create
  *
  * @param table The table
  */
 public void setDatastoreContainerObject(DatastoreClass table) {
   if (table != null) {
     this.table = table;
     this.tableName = table.toString();
     this.tableIdentifier = table.getIdentifier();
   }
 }