Project

General

Profile

1 2022 costa
/*
2
 * HarvestDetailLog.java
3
 *
4
 * Created on January 14, 2004, 4:59 PM
5
 */
6
7
package edu.ucsb.nceas.metacat.harvesterClient;
8
9
/**
10
 * HarvestDetailLog manages data and operations corresponding to the
11
 * HARVEST_DETAIL_LOG table. It records errors encountered while attempting
12
 * to harvest a particular document.
13
 *
14
 * @author  costa
15
 */
16
public class HarvestDetailLog {
17
18
  private int detailLogID;
19
  private String errorMessage;
20
  private Object harvestDocument;
21
  private int harvestLogID;
22
23
24
  /**
25
   * Creates a new instance of HarvestDetailLog.
26
   */
27
  public HarvestDetailLog() {
28
  }
29
30
31
  /**
32
   * Inserts a new entry into the HARVEST_DETAIL_LOG table, based on the
33
   * contents of this HarvestDetailLog object. Not yet implemented.
34
   */
35
  public void dnInsertHarvestDetailLogEntry() {
36
  }
37
38
}