Make driveFolderId on Registry entity optional

This defaults to null, and leaving it to null now simply disables reserved terms
exporting, rather than throwing an error every time the action runs.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=138763161
This commit is contained in:
mcilwain 2016-11-10 08:25:23 -08:00 committed by Ben McIlwain
parent 9122372e38
commit 274b070b54
3 changed files with 14 additions and 11 deletions

View file

@ -270,7 +270,11 @@ public class Registry extends ImmutableObject implements Buildable {
*/
String tldUnicode;
/** Id of the folder in drive used to publish information for this TLD. */
/**
* Id of the folder in drive used to public (export) information for this TLD.
*
* <p>This is optional; if not configured, then information won't be exported for this TLD.
*/
String driveFolderId;
/** The type of the TLD, whether it's real or for testing. */