JAL-919, JAL-715 - prototype service editing dialog using jalview parameter model...
[jalview.git] / src / jalview / ws / rest / params / AnnotationFile.java
index 5abf0fc..b1681a0 100644 (file)
@@ -1,6 +1,8 @@
 package jalview.ws.rest.params;
 
 import jalview.datamodel.AlignmentI;
+import jalview.ws.params.OptionI;
+import jalview.ws.params.simple.Option;
 import jalview.ws.rest.InputType;
 import jalview.ws.rest.NoValidInputDataException;
 import jalview.ws.rest.RestJob;
@@ -9,6 +11,7 @@ import jalview.ws.rest.InputType.molType;
 
 import java.io.UnsupportedEncodingException;
 import java.util.ArrayList;
+import java.util.Arrays;
 import java.util.List;
 
 import org.apache.http.entity.mime.content.ContentBody;
@@ -90,4 +93,15 @@ public class AnnotationFile extends InputType {
     }
     return false;
   }
+  @Override
+  public List<OptionI> getOptions()
+  {
+    // TODO - consider disregarding base options here.
+    List<OptionI> lst = getBaseOptions();
+    lst.add(new Option("format",
+            "Alignment annotation upload format", true, JVANNOT,
+            format, Arrays.asList(new String[]
+            { JVANNOT, CSVANNOT}), null));
+    return lst;
+  }
 }