Issue 112: removed invalid status code

git-svn-id: http://jclouds.googlecode.com/svn/trunk@2493 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
adrian.f.cole 2009-12-21 05:12:41 +00:00
parent 29e92bfe60
commit 5e8543261a
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ import static com.google.common.base.Preconditions.checkNotNull;
* @author Adrian Cole
*/
public enum TaskStatus {
SUCCESS, FAILED, RUNNING, QUEUED, ERROR, CANCELLED, COMPLETED;
SUCCESS, FAILED, RUNNING, QUEUED, ERROR, CANCELLED;
public String value() {
return name().toLowerCase();
}