Route.java -remove exceptions 90/97690/1
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Tue, 29 Oct 2019 15:35:39 +0000 (21:05 +0530)
committerThugutla sailakshmi <tsaila10@in.ibm.com>
Tue, 29 Oct 2019 15:35:59 +0000 (21:05 +0530)
Issue-ID: AAF-876
Change-Id: Iadee616353f8bbde4c521214b9c30927181cf3b2
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/Route.java

index a328284..f8c5ae1 100644 (file)
@@ -56,7 +56,7 @@ public class Route<TRANS extends Trans> {
         content.add(code, others);
     }
 
-    public HttpCode<TRANS,?> getCode(TRANS trans, HttpServletRequest req, HttpServletResponse resp) throws IOException, ServletException {
+    public HttpCode<TRANS,?> getCode(TRANS trans, HttpServletRequest req, HttpServletResponse resp) {
         // Type is associated with Accept for GET (since it is what is being returned
         // We associate the rest with ContentType.
         // FYI, thought about this a long time before implementing this way.