mirror of
https://github.com/google/nomulus.git
synced 2025-06-05 20:17:27 +02:00
Add cursors for tracking ICANN report uploads to Cursor.java (#349)
This commit is contained in:
parent
5359f4640a
commit
69acb9f6de
1 changed files with 10 additions and 1 deletions
|
@ -79,7 +79,16 @@ public class Cursor extends ImmutableObject {
|
|||
* stored is the last time that registrar changes were successfully synced to the sheet. If
|
||||
* there were no changes since the last time the action run, the cursor is not updated.
|
||||
*/
|
||||
SYNC_REGISTRAR_SHEET(EntityGroupRoot.class);
|
||||
SYNC_REGISTRAR_SHEET(EntityGroupRoot.class),
|
||||
|
||||
/** Cursor for tracking monthly uploads of ICANN transaction reports. */
|
||||
ICANN_UPLOAD_TX(Registry.class),
|
||||
|
||||
/** Cursor for tracking monthly uploads of ICANN activity reports. */
|
||||
ICANN_UPLOAD_ACTIVITY(Registry.class),
|
||||
|
||||
/** Cursor for tracking monthly upload of MANIFEST.txt to ICANN. */
|
||||
ICANN_UPLOAD_MANIFEST(EntityGroupRoot.class);
|
||||
|
||||
/** See the definition of scope on {@link #getScopeClass}. */
|
||||
private final Class<? extends ImmutableObject> scope;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue