diff options
author | sheetalm <sheetal.mudholkar@amdocs.com> | 2018-03-29 15:48:04 +0530 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2018-03-29 14:31:52 +0000 |
commit | 8d74513329f8b6c6783024de866784f32c4b0f2c (patch) | |
tree | b4410536487ac8cd290979f8d8dd737b179c550c /services | |
parent | a26e2683d10fdd4484d67bb8b7d6a2e0a41ab753 (diff) |
Activity Spec - Correct api-docs description
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>
Diffstat (limited to 'services')
-rw-r--r-- | services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/api/rest/ActivitySpecs.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/api/rest/ActivitySpecs.java b/services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/api/rest/ActivitySpecs.java index f646a3b87a..ae9e1583fd 100644 --- a/services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/api/rest/ActivitySpecs.java +++ b/services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/api/rest/ActivitySpecs.java @@ -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); } |