Revision 7795
Added by Jing Tao over 11 years ago
metacat-index/src/main/java/edu/ucsb/nceas/metacat/index/event/IndexEvent.java | ||
---|---|---|
1 | 1 |
/** |
2 | 2 |
* '$RCSfile$' |
3 |
* Purpose: A class that gets Accession Number, check for uniqueness |
|
4 |
* and register it into db |
|
5 |
* Copyright: 2000 Regents of the University of California and the |
|
3 |
* Purpose: A class represents an event for the solr indexing. |
|
4 |
* Copyright: 2013 Regents of the University of California and the |
|
6 | 5 |
* National Center for Ecological Analysis and Synthesis |
7 |
* Authors: Jivka Bojilova, Matt Jones
|
|
6 |
* Authors: Jing Tao
|
|
8 | 7 |
* |
9 |
* '$Author: leinfelder $' |
|
10 |
* '$Date: 2011-11-02 20:40:12 -0700 (Wed, 02 Nov 2011) $' |
|
11 |
* '$Revision: 6595 $' |
|
12 |
* |
|
13 | 8 |
* This program is free software; you can redistribute it and/or modify |
14 | 9 |
* it under the terms of the GNU General Public License as published by |
15 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
... | ... | |
32 | 27 |
|
33 | 28 |
|
34 | 29 |
/** |
35 |
* A class represents an event for solr index.
|
|
30 |
* A class represents an event for the solr indexing.
|
|
36 | 31 |
* @author tao |
37 | 32 |
* |
38 | 33 |
*/ |
metacat-index/src/main/java/edu/ucsb/nceas/metacat/index/event/IndexEventLogException.java | ||
---|---|---|
1 |
/** |
|
2 |
* '$RCSfile$' |
|
3 |
* Purpose: A class represents the exceptions in the IndexEventLog process. |
|
4 |
* Copyright: 2013 Regents of the University of California and the |
|
5 |
* National Center for Ecological Analysis and Synthesis |
|
6 |
* Authors: Jing Tao |
|
7 |
* |
|
8 |
* This program is free software; you can redistribute it and/or modify |
|
9 |
* it under the terms of the GNU General Public License as published by |
|
10 |
* the Free Software Foundation; either version 2 of the License, or |
|
11 |
* (at your option) any later version. |
|
12 |
* |
|
13 |
* This program is distributed in the hope that it will be useful, |
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
16 |
* GNU General Public License for more details. |
|
17 |
* |
|
18 |
* You should have received a copy of the GNU General Public License |
|
19 |
* along with this program; if not, write to the Free Software |
|
20 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
*/ |
|
1 | 22 |
package edu.ucsb.nceas.metacat.index.event; |
2 | 23 |
|
3 | 24 |
/** |
4 |
* A class represents the exception in the IndexEventLog process. |
|
25 |
* A class represents the exceptions in the IndexEventLog process.
|
|
5 | 26 |
* @author tao |
6 | 27 |
* |
7 | 28 |
*/ |
metacat-index/src/main/java/edu/ucsb/nceas/metacat/index/event/IndexEventLog.java | ||
---|---|---|
1 |
/** |
|
2 |
* '$RCSfile$' |
|
3 |
* Purpose: An interface to store and query the IndexEvent. |
|
4 |
* Copyright: 2013 Regents of the University of California and the |
|
5 |
* National Center for Ecological Analysis and Synthesis |
|
6 |
* Authors: Jing Tao |
|
7 |
* |
|
8 |
* This program is free software; you can redistribute it and/or modify |
|
9 |
* it under the terms of the GNU General Public License as published by |
|
10 |
* the Free Software Foundation; either version 2 of the License, or |
|
11 |
* (at your option) any later version. |
|
12 |
* |
|
13 |
* This program is distributed in the hope that it will be useful, |
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
16 |
* GNU General Public License for more details. |
|
17 |
* |
|
18 |
* You should have received a copy of the GNU General Public License |
|
19 |
* along with this program; if not, write to the Free Software |
|
20 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
*/ |
|
1 | 22 |
package edu.ucsb.nceas.metacat.index.event; |
2 | 23 |
|
3 | 24 |
import java.util.Date; |
Also available in: Unified diff
Update the documentation about those classes.