summaryrefslogtreecommitdiffstats
path: root/controlloop/common/feature-controlloop-trans/src/main
diff options
context:
space:
mode:
authorjhh <jorge.hernandez-herrero@att.com>2020-04-29 11:41:25 -0500
committerjhh <jorge.hernandez-herrero@att.com>2020-04-29 12:04:49 -0500
commit2dab085354e00bff78028e7263f1112a9c3aa6b7 (patch)
treeacd09f3e9052600bea56bb5b8a41061fb436839e /controlloop/common/feature-controlloop-trans/src/main
parentfcd33bd5487e978e343ad8b2e89b41c4c253d069 (diff)
change the @api path in rest transactions api
Issue-ID: POLICY-2530 Signed-off-by: jhh <jorge.hernandez-herrero@att.com> Change-Id: If21e0607edcf75f491be61012779ddfa5d880105 Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Diffstat (limited to 'controlloop/common/feature-controlloop-trans/src/main')
-rw-r--r--controlloop/common/feature-controlloop-trans/src/main/java/org/onap/policy/drools/server/restful/RestTransactionTracker.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/controlloop/common/feature-controlloop-trans/src/main/java/org/onap/policy/drools/server/restful/RestTransactionTracker.java b/controlloop/common/feature-controlloop-trans/src/main/java/org/onap/policy/drools/server/restful/RestTransactionTracker.java
index b954167ee..3521e9f55 100644
--- a/controlloop/common/feature-controlloop-trans/src/main/java/org/onap/policy/drools/server/restful/RestTransactionTracker.java
+++ b/controlloop/common/feature-controlloop-trans/src/main/java/org/onap/policy/drools/server/restful/RestTransactionTracker.java
@@ -40,7 +40,7 @@ import org.onap.policy.drools.apps.controlloop.feature.trans.ControlLoopMetricsM
* REST Transaction Tracker.
*/
-@Path("/policy/pdp/engine/controllers")
+@Path("/policy/pdp/engine/controllers/transactions")
@Produces({MediaType.APPLICATION_JSON, YamlMessageBodyHandler.APPLICATION_YAML})
@Consumes({MediaType.APPLICATION_JSON, YamlMessageBodyHandler.APPLICATION_YAML})
@Api
@@ -51,7 +51,7 @@ public class RestTransactionTracker {
*/
@GET
- @Path("transactions")
+ @Path("inprogress")
@ApiOperation(value = "Retrieve in-progress transactions", responseContainer = "List")
public Response transactions() {
return Response.status(Response.Status.OK)
@@ -63,7 +63,7 @@ public class RestTransactionTracker {
*/
@GET
- @Path("transactions/{transactionId}")
+ @Path("inprogress/{transactionId}")
@ApiOperation(value = "Retrieve an in-progress transaction", response = VirtualControlLoopNotification.class)
public Response transactionId(
@ApiParam(value = "UUID", required = true) @PathParam("transactionId") String transactionId) {
@@ -78,7 +78,7 @@ public class RestTransactionTracker {
*/
@PUT
- @Path("transactions/cacheSize/{cacheSize}")
+ @Path("cacheSize/{cacheSize}")
@ApiOperation(value = "Sets the cache size", response = Integer.class)
public Response cacheSize(
@ApiParam(value = "cache size", required = true) @PathParam("cacheSize") int cacheSize) {
@@ -93,7 +93,7 @@ public class RestTransactionTracker {
*/
@GET
- @Path("transactions/cacheSize")
+ @Path("cacheSize")
@ApiOperation(value = "Gets the cache size", response = Integer.class)
public Response cacheSize() {
return Response.status(Response.Status.OK)
@@ -105,7 +105,7 @@ public class RestTransactionTracker {
*/
@PUT
- @Path("transactions/timeout/{timeoutSecs}")
+ @Path("timeout/{timeoutSecs}")
@ApiOperation(value = "Sets the timeout in seconds", response = Integer.class)
public Response timeout(
@ApiParam(value = "timeout", required = true) @PathParam("timeoutSecs") long timeoutSecs) {
@@ -120,7 +120,7 @@ public class RestTransactionTracker {
*/
@GET
- @Path("transactions/timeout")
+ @Path("timeout")
@ApiOperation(value = "Gets the cache timeout", response = Long.class)
public Response timeout() {
return Response.status(Response.Status.OK)