]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.server/src/main/java/org/argeo/slc/web/mvc/result/GetResultController.java
Change some url in the ria package to fit the new controller strategy
[gpl/argeo-slc.git] / runtime / org.argeo.slc.server / src / main / java / org / argeo / slc / web / mvc / result / GetResultController.java
index 4fef228a338dcc2f3d3aedfa03935a52cb248718..03a9dd7abf25fa7897f4721dcd97aef42f0047ab 100644 (file)
@@ -1,8 +1,25 @@
+/*\r
+ * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *         http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
 package org.argeo.slc.web.mvc.result;\r
 \r
 import javax.servlet.http.HttpServletRequest;\r
 import javax.servlet.http.HttpServletResponse;\r
 \r
+import org.argeo.slc.SlcException;\r
 import org.argeo.slc.core.test.tree.TreeTestResult;\r
 import org.argeo.slc.dao.test.tree.TreeTestResultDao;\r
 import org.argeo.slc.web.mvc.AbstractServiceController;\r
@@ -25,7 +42,8 @@ public class GetResultController extends AbstractServiceController {
 \r
                String uuid = request.getParameter("uuid");\r
                TreeTestResult result = testResultDao.getTestResult(uuid);\r
-\r
+               if (result == null)\r
+                       throw new SlcException("No result found for uuid " + uuid);\r
                modelAndView.addObject(MODELKEY_RESULT, result);\r
        }\r
 \r