Refer to Datastore everywhere correctly by its capitalized form

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=147479683
This commit is contained in:
mcilwain 2017-02-14 09:11:30 -08:00 committed by Ben McIlwain
parent a8cf81bca2
commit cdadb54acd
123 changed files with 232 additions and 235 deletions

View file

@ -33,25 +33,25 @@ import java.util.List;
import org.joda.time.DateTime;
import org.joda.time.Duration;
/** Container for information about a datastore backup. */
/** Container for information about a Datastore backup. */
public class DatastoreBackupInfo {
@NonFinalForTesting
private static Clock clock = new SystemClock();
/** The possible status values for a datastore backup. */
/** The possible status values for a Datastore backup. */
public enum BackupStatus { PENDING, COMPLETE }
/** The name of the datastore backup. */
/** The name of the Datastore backup. */
private final String backupName;
/** The entity kinds included in this datastore backup. */
/** The entity kinds included in this Datastore backup. */
private final ImmutableSet<String> kinds;
/** The start time of the datastore backup. */
/** The start time of the Datastore backup. */
private final DateTime startTime;
/** The completion time of the datastore backup, present if it has completed. */
/** The completion time of the Datastore backup, present if it has completed. */
private final Optional<DateTime> completeTime;
/**