diff options
author | Li Jiale <lijiale@cmss.chinamobile.com> | 2019-04-24 17:43:30 +0800 |
---|---|---|
committer | Li Jiale <lijiale@cmss.chinamobile.com> | 2019-04-24 17:50:05 +0800 |
commit | b6babb37d3b09a1c021e517f528812e8186d9f51 (patch) | |
tree | c4d98b60851c58e3098eeebb3f6a0f4c0c36fc75 | |
parent | f50b93ada64ed6554c3b9b42f836ac711c543871 (diff) |
Modify method name misspelled
Issue-ID: VFC-1364
Change-Id: I31694470adfa52afedc3458ccb10c32c8ec2534d
Signed-off-by: li jiale <lijiale@cmss.chinamobile.com>
-rw-r--r-- | service/src/main/java/org/onap/vfc/nfvo/multivimproxy/service/rest/ProxyRoa.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/service/src/main/java/org/onap/vfc/nfvo/multivimproxy/service/rest/ProxyRoa.java b/service/src/main/java/org/onap/vfc/nfvo/multivimproxy/service/rest/ProxyRoa.java index e69b5b7..b33664f 100644 --- a/service/src/main/java/org/onap/vfc/nfvo/multivimproxy/service/rest/ProxyRoa.java +++ b/service/src/main/java/org/onap/vfc/nfvo/multivimproxy/service/rest/ProxyRoa.java @@ -147,7 +147,7 @@ public class ProxyRoa { @GET @Path("{var:.*}") - public String porxyGet(@Context HttpServletRequest context, @Context HttpServletResponse rsp) { + public String proxyGet(@Context HttpServletRequest context, @Context HttpServletResponse rsp) { // transfer to MultiVim RestfulParametes restfulParametes = new RestfulParametes(); @@ -164,7 +164,7 @@ public class ProxyRoa { @PUT @Path("{var:.*}") - public String porxyPut(@Context HttpServletRequest context, @Context HttpServletResponse rsp) { + public String proxyPut(@Context HttpServletRequest context, @Context HttpServletResponse rsp) { JSONObject object = RequestUtil.getJsonRequestBody(context); if(null == object) { LOGGER.error("function=proxyPost; msg=PUT error, because porxyPut is null."); @@ -188,7 +188,7 @@ public class ProxyRoa { @DELETE @Path("{var:.*}") - public String porxyDelete(@Context HttpServletRequest context, @Context HttpServletResponse rsp) { + public String proxyDelete(@Context HttpServletRequest context, @Context HttpServletResponse rsp) { // transfer to MultiVim RestfulParametes restfulParametes = new RestfulParametes(); |