diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-11-06 12:46:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-06 12:46:45 +0000 |
commit | ba56b5ef06deadc041418b8311ede1a241b49ab0 (patch) | |
tree | d738e12b57cfec7520258a34c7dfeba2941ee662 /auth | |
parent | b22c9a1b97d1224becc8e22f472dec8d7269a18c (diff) | |
parent | af83df62f68cf93e9442eb01aaf89eca7f2509c2 (diff) |
Merge "Route.java -remove exceptions"
Diffstat (limited to 'auth')
-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. |