diff options
author | Plummer, Brittany <brittany.plummer@att.com> | 2019-06-21 10:44:38 -0400 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2019-06-21 11:17:21 -0400 |
commit | e27f40a31b64d1481166ecc162052800d6ffbd14 (patch) | |
tree | 62ef14612eb81f770d94a9045393caa0f41fa41e /mso-api-handlers/mso-api-handler-infra/src | |
parent | f2f824a00e4cb68bc146e37fe01a8833a6c72636 (diff) |
Updated path to match AID for resume requests
Updated path to match AID for resume requests
Change-Id: I0035360f206882e602265500dcd54036b3e69ea2
Issue-ID: SO-2042
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
Diffstat (limited to 'mso-api-handlers/mso-api-handler-infra/src')
2 files changed, 2 insertions, 2 deletions
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/ResumeOrchestrationRequest.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/ResumeOrchestrationRequest.java index 32d2c50978..d82fd38e9f 100644 --- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/ResumeOrchestrationRequest.java +++ b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/ResumeOrchestrationRequest.java @@ -80,7 +80,7 @@ public class ResumeOrchestrationRequest { private MsoRequest msoRequest; @POST - @Path("/{version:[vV][7]}/requests/{requestId}/resume") + @Path("/{version:[vV][7]}/{requestId}/resume") @Consumes(MediaType.APPLICATION_JSON) @Produces(MediaType.APPLICATION_JSON) @ApiOperation(value = "Resume request for a given requestId", response = Response.class) diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/infra/rest/handler/AbstractRestHandler.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/infra/rest/handler/AbstractRestHandler.java index db84353cd4..227506c60e 100644 --- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/infra/rest/handler/AbstractRestHandler.java +++ b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/infra/rest/handler/AbstractRestHandler.java @@ -182,7 +182,7 @@ public abstract class AbstractRestHandler { } return selfLinkUrl; } - + /** * @param vfmoduleInstanceId * @param requestId |