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

View File

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