Modify method name misspelled 36/86136/1
authorLi Jiale <lijiale@cmss.chinamobile.com>
Wed, 24 Apr 2019 09:43:30 +0000 (17:43 +0800)
committerLi Jiale <lijiale@cmss.chinamobile.com>
Wed, 24 Apr 2019 09:50:05 +0000 (17:50 +0800)
Issue-ID: VFC-1364
Change-Id: I31694470adfa52afedc3458ccb10c32c8ec2534d
Signed-off-by: li jiale <lijiale@cmss.chinamobile.com>
service/src/main/java/org/onap/vfc/nfvo/multivimproxy/service/rest/ProxyRoa.java

index e69b5b7..b33664f 100644 (file)
@@ -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();