Skip to content

Commit

Permalink
HWKALERTS-153 Fix some issues on Swagger generated doc
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasponce committed Jul 1, 2016
1 parent 4d23e7f commit 44263b9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public Response findAlerts(
@QueryParam("severities")
final String severities,
@ApiParam(required = false, value = "Filter out events for unspecified tags, comma separated list of tags, "
+ "each tag of format 'name|value'. Specify '*' for value to match all values.")
+ "each tag of format \'name|value\'. Specify \'*\' for value to match all values.")
@QueryParam("tags")
final String tags,
@ApiParam(required = false, value = "Return only thin alerts, do not include: evalSets, resolvedEvalSets.")
Expand Down Expand Up @@ -234,7 +234,7 @@ public Response addTags(
@QueryParam("alertIds")
final String alertIds,
@ApiParam(required = true, value = "Comma separated list of tags to add, "
+ "each tag of format 'name|value'.")
+ "each tag of format \'name|value\'.")
@QueryParam("tags")
final String tags) {
try {
Expand Down Expand Up @@ -402,7 +402,7 @@ public Response deleteAlerts(
@QueryParam("severities")
final String severities,
@ApiParam(required = false, value = "Filter out alerts for unspecified tags, comma separated list of tags, "
+ "each tag of format 'name|value'. Specify '*' for value to match all values.")
+ "each tag of format \'name|value\'. Specify \'*\' for value to match all values.")
@QueryParam("tags")
final String tags
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public Response addTags(
@QueryParam("eventIds")
final String eventIds,
@ApiParam(required = true, value = "Comma separated list of tags to add, "
+ "each tag of format 'name|value'.")
+ "each tag of format \'name|value\'.")
@QueryParam("tags")
final String tags) {
try {
Expand Down Expand Up @@ -230,7 +230,7 @@ public Response findEvents(
@QueryParam("categories")
final String categories,
@ApiParam(required = false, value = "Filter out events for unspecified tags, comma separated list of tags, "
+ "each tag of format 'name|value'. Specify '*' for value to match all values.")
+ "each tag of format \'name|value\'. Specify \'*\' for value to match all values.")
@QueryParam("tags")
final String tags,
@ApiParam(required = false, value = "Return only thin events, do not include: evalSets.")
Expand Down Expand Up @@ -318,7 +318,7 @@ public Response deleteEvents(
"comma separated list of category values.") @QueryParam("categories")
final String categories,
@ApiParam(required = false, value = "Filter out events for unspecified tags, comma separated list of tags, "
+ "each tag of format 'name|value'. Specify '*' for value to match all values.")
+ "each tag of format \'name|value\'. Specify \'*\' for value to match all values.")
@QueryParam("tags")
final String tags
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public Response findTriggers(
@QueryParam("triggerIds")
final String triggerIds,
@ApiParam(required = false, value = "Filter out triggers for unspecified tags, comma separated list of "
+ "tags, each tag of format 'name|value'. Specify '*' for value to match all values.")
+ "tags, each tag of format \'name|value\'. Specify \'*\' for value to match all values.")
@QueryParam("tags")
final String tags,
@ApiParam(required = false, value = "Return only thin triggers. Currently Ignored.")
Expand Down

0 comments on commit 44263b9

Please sign in to comment.