diff options
author | Thugutla sailakshmi <tsaila10@in.ibm.com> | 2019-10-29 21:05:39 +0530 |
---|---|---|
committer | Thugutla sailakshmi <tsaila10@in.ibm.com> | 2019-10-29 21:05:59 +0530 |
commit | af83df62f68cf93e9442eb01aaf89eca7f2509c2 (patch) | |
tree | 32db20fc9f495546a6ec8129870c99fae5271d6b /auth/auth-core/src | |
parent | bc5f9dec37da59182034c1166a6a9d4150f40847 (diff) |
Route.java -remove exceptions
Issue-ID: AAF-876
Change-Id: Iadee616353f8bbde4c521214b9c30927181cf3b2
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
Diffstat (limited to 'auth/auth-core/src')
-rw-r--r-- | auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/Route.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/Route.java b/auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/Route.java index a3282849..f8c5ae19 100644 --- a/auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/Route.java +++ b/auth/auth-core/src/main/java/org/onap/aaf/auth/rserv/Route.java @@ -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. |