diff options
author | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2021-08-19 15:34:00 -0400 |
---|---|---|
committer | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2021-08-19 16:17:34 -0400 |
commit | 784b94f5872721fadf39cc459e02bd77d9e7c796 (patch) | |
tree | dab579e861e2484bd5cc5d09438f2f3b24c7b164 /plugins/forwarding-plugins/src/test | |
parent | 801ab43d13537d19710e8f948d4614f158daafc7 (diff) |
Use generic create policy api
Change lifecycycle api forwarder to use
generic create policy api for creating policies.
Hence, no need to parse the tosca template and
find fields to build the specific url.
Issue-ID: POLICY-3545
Change-Id: I848df3cf2e0cbb9136120769293cc466d660036a
Signed-off-by: Ram Krishna Verma <ram_krishna.verma@bell.ca>
Diffstat (limited to 'plugins/forwarding-plugins/src/test')
-rw-r--r-- | plugins/forwarding-plugins/src/test/java/org/onap/policy/distribution/forwarding/testclasses/LifecycycleApiSimulatorEndpoint.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/forwarding-plugins/src/test/java/org/onap/policy/distribution/forwarding/testclasses/LifecycycleApiSimulatorEndpoint.java b/plugins/forwarding-plugins/src/test/java/org/onap/policy/distribution/forwarding/testclasses/LifecycycleApiSimulatorEndpoint.java index 2b38434c..4a881cb0 100644 --- a/plugins/forwarding-plugins/src/test/java/org/onap/policy/distribution/forwarding/testclasses/LifecycycleApiSimulatorEndpoint.java +++ b/plugins/forwarding-plugins/src/test/java/org/onap/policy/distribution/forwarding/testclasses/LifecycycleApiSimulatorEndpoint.java @@ -1,6 +1,7 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2019 Nordix Foundation. + * Modifications Copyright (C) 2021 Bell Canada. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -64,7 +65,7 @@ public class LifecycycleApiSimulatorEndpoint { * @return the response object */ @POST - @Path("/api/v1/policytypes/{policyTypeId}/versions/{policyTypeVersion}/policies") + @Path("/api/v1/policies") @Consumes(MediaType.APPLICATION_JSON) @Produces(MediaType.APPLICATION_JSON) public Response createPolicies(@PathParam("policyTypeId") final String policyTypeId, |