Activity Spec - Correct api-docs description 19/40119/2
authorsheetalm <sheetal.mudholkar@amdocs.com>
Thu, 29 Mar 2018 10:18:04 +0000 (15:48 +0530)
committerVitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com>
Thu, 29 Mar 2018 14:31:52 +0000 (14:31 +0000)
Correct api-docs description.
New fields added to json for flow test

Change-Id: I67de4c19055fb5e5456f2aa143285f88b7d8ce18
Issue-ID: SDC-1048
Signed-off-by: sheetalm <sheetal.mudholkar@amdocs.com>
openecomp-bdd/resources/json/createActivitySpec.json
services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/api/rest/ActivitySpecs.java

index 8d5fc16..29ad716 100644 (file)
@@ -4,14 +4,16 @@
   "categoryList": [
     "Server"
   ],
-  "inputParameters": [{
+  "inputs": [{
     "name": "host",
     "type": "string",
     "value": "10.1.2.3"
   }],
-  "outputParameters": [{
+  "outputs": [{
     "name": "status",
     "type": "string",
     "value": "started"
-  }]
+  }],
+  "type": "string",
+  "content": "test"
 }
\ No newline at end of file
index f646a3b..ae9e158 100644 (file)
@@ -67,8 +67,9 @@ public interface ActivitySpecs {
   @Path("/{id}/versions/{versionId}/actions")
   @ApiOperation(value = "Actions on a activity spec",
       notes = "Performs one of the following actions on a activity spec: |"
-          + "Submit: Finalize its active version.|"
-          + "Deprecate: Deprecate activity spec.|")
+          + "CERTIFY: Certifies activity spec.|"
+          + "DEPRECATE: Deprecates activity spec.|"
+          + "DELETE: Deletes activity spec.")
   Response actOnActivitySpec(ActivitySpecActionRequestDto request,
       @ApiParam(value = "Activity Spec Id") @PathParam("id") String id,
       @ApiParam(value = "Version Id") @PathParam("versionId") String versionId);
@@ -78,6 +79,6 @@ public interface ActivitySpecs {
   @ApiOperation(value = "Get list of activity specs ",
       responseContainer = "List")
   Response list(@ApiParam(
-      value = "Currently supported values: 'Certified' - only activity specs with Certified status")
+      value = "List activity specs based on status filter")
                     @QueryParam("status") String versionStatus);
 }