"Not started" renamed to "Published"

This commit is contained in:
CalDescent 2022-01-15 20:21:52 +00:00
parent 1d77101253
commit 5018d27c25
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ public class ArbitraryDataResource {
return new ArbitraryResourceStatus(Status.DOWNLOADING);
}
else if (this.isDataPotentiallyAvailable()) {
return new ArbitraryResourceStatus(Status.NOT_STARTED);
return new ArbitraryResourceStatus(Status.PUBLISHED);
}
return new ArbitraryResourceStatus(Status.MISSING_DATA);
}

View File

@ -7,7 +7,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
public class ArbitraryResourceStatus {
public enum Status {
NOT_STARTED("Not started", "Downloading not yet started"),
PUBLISHED("Published", "Published but not yet downloaded"),
DOWNLOADING("Downloading", "Locating and downloading files..."),
DOWNLOADED("Downloaded", "Files downloaded"),
BUILDING("Building", "Building..."),