Displaying differences for changeset
 
display as  

src/java/m/groundwater/V1_0.java

@@ -1,11 +1,11 @@
 package m.groundwater;
 
 import csip.ModelDataService;
+import csip.annotations.Description;
+import csip.annotations.Name;
+import csip.annotations.VersionInfo;
 import java.io.File;
 import javax.ws.rs.Path;
-import oms3.annotations.Description;
-import oms3.annotations.Name;
-import oms3.annotations.VersionInfo;
 
 @Name("groundwater")
 @Description("USGS Groundwater time series analysis tool")
@@ -16,7 +16,7 @@
     guiGroundwater_Model model = new guiGroundwater_Model();
 
     @Override
-    protected String process() throws Exception {
+    protected void doProcess() throws Exception {
         model.setMainFolder(getWorkspaceDir().toString());
         model.setDatabase(getStringParam("database"));
         model.setStationID(getStringParam("station_id"));
@@ -37,7 +37,6 @@
         model.setUserData(getStringParam("user_data"));
 
         model.run();
-        return EXEC_OK;
     }
     
     @Override