Skip to content

Commit

Permalink
Merge pull request #321 from jshaughn/hwkalerts-255
Browse files Browse the repository at this point in the history
HWKALERTS-255 Fix tagQuery BNF
  • Loading branch information
lucasponce committed Apr 18, 2017
2 parents 17c57d1 + 5750501 commit b099d63
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Expand Up @@ -103,7 +103,7 @@ public AlertsHandler() {
"<tag_name> <array_operator> <array> ) \n" +
"<not> ::= [ \"NOT\" | \"not\" ] \n" +
"<logical_operator> ::= [ \"AND\" | \"OR\" | \"and\" | \"or\" ] \n" +
"<boolean_operator> ::= [ \"==\" | \"!=\" ] \n" +
"<boolean_operator> ::= [ \"=\" | \"!=\" ] \n" +
"<array_operator> ::= [ \"IN\" | \"NOT IN\" | \"in\" | \"not in\" ] \n" +
"<array> ::= ( \"[\" \"]\" | \"[\" ( \",\" <tag_value> )* ) \n" +
"<tag_name> ::= <identifier> \n" +
Expand Down Expand Up @@ -237,7 +237,7 @@ We maintain old tags criteria as deprecated (it can be removed in a next major v
"<tag_name> <array_operator> <array> ) \n" +
"<not> ::= [ \"NOT\" | \"not\" ] \n" +
"<logical_operator> ::= [ \"AND\" | \"OR\" | \"and\" | \"or\" ] \n" +
"<boolean_operator> ::= [ \"==\" | \"!=\" ] \n" +
"<boolean_operator> ::= [ \"=\" | \"!=\" ] \n" +
"<array_operator> ::= [ \"IN\" | \"NOT IN\" | \"in\" | \"not in\" ] \n" +
"<array> ::= ( \"[\" \"]\" | \"[\" ( \",\" <tag_value> )* ) \n" +
"<tag_name> ::= <identifier> \n" +
Expand Down Expand Up @@ -576,7 +576,7 @@ public Response deleteAlert(
"<tag_name> <array_operator> <array> ) \n" +
"<not> ::= [ \"NOT\" | \"not\" ] \n" +
"<logical_operator> ::= [ \"AND\" | \"OR\" | \"and\" | \"or\" ] \n" +
"<boolean_operator> ::= [ \"==\" | \"!=\" ] \n" +
"<boolean_operator> ::= [ \"=\" | \"!=\" ] \n" +
"<array_operator> ::= [ \"IN\" | \"NOT IN\" | \"in\" | \"not in\" ] \n" +
"<array> ::= ( \"[\" \"]\" | \"[\" ( \",\" <tag_value> )* ) \n" +
"<tag_name> ::= <identifier> \n" +
Expand Down
Expand Up @@ -93,7 +93,7 @@ public CrossTenantHandler() {
"<tag_name> <array_operator> <array> ) \n" +
"<not> ::= [ \"NOT\" | \"not\" ] \n" +
"<logical_operator> ::= [ \"AND\" | \"OR\" | \"and\" | \"or\" ] \n" +
"<boolean_operator> ::= [ \"==\" | \"!=\" ] \n" +
"<boolean_operator> ::= [ \"=\" | \"!=\" ] \n" +
"<array_operator> ::= [ \"IN\" | \"NOT IN\" | \"in\" | \"not in\" ] \n" +
"<array> ::= ( \"[\" \"]\" | \"[\" ( \",\" <tag_value> )* ) \n" +
"<tag_name> ::= <identifier> \n" +
Expand Down Expand Up @@ -222,7 +222,7 @@ We maintain old tags criteria as deprecated (it can be removed in a next major v
"<tag_name> <array_operator> <array> ) \n" +
"<not> ::= [ \"NOT\" | \"not\" ] \n" +
"<logical_operator> ::= [ \"AND\" | \"OR\" | \"and\" | \"or\" ] \n" +
"<boolean_operator> ::= [ \"==\" | \"!=\" ] \n" +
"<boolean_operator> ::= [ \"=\" | \"!=\" ] \n" +
"<array_operator> ::= [ \"IN\" | \"NOT IN\" | \"in\" | \"not in\" ] \n" +
"<array> ::= ( \"[\" \"]\" | \"[\" ( \",\" <tag_value> )* ) \n" +
"<tag_name> ::= <identifier> \n" +
Expand Down Expand Up @@ -328,7 +328,7 @@ We maintain old tags criteria as deprecated (it can be removed in a next major v
"<tag_name> <array_operator> <array> ) \n" +
"<not> ::= [ \"NOT\" | \"not\" ] \n" +
"<logical_operator> ::= [ \"AND\" | \"OR\" | \"and\" | \"or\" ] \n" +
"<boolean_operator> ::= [ \"==\" | \"!=\" ] \n" +
"<boolean_operator> ::= [ \"=\" | \"!=\" ] \n" +
"<array_operator> ::= [ \"IN\" | \"NOT IN\" | \"in\" | \"not in\" ] \n" +
"<array> ::= ( \"[\" \"]\" | \"[\" ( \",\" <tag_value> )* ) \n" +
"<tag_name> ::= <identifier> \n" +
Expand Down Expand Up @@ -448,7 +448,7 @@ public Response watchAlerts(
"<tag_name> <array_operator> <array> ) \n" +
"<not> ::= [ \"NOT\" | \"not\" ] \n" +
"<logical_operator> ::= [ \"AND\" | \"OR\" | \"and\" | \"or\" ] \n" +
"<boolean_operator> ::= [ \"==\" | \"!=\" ] \n" +
"<boolean_operator> ::= [ \"=\" | \"!=\" ] \n" +
"<array_operator> ::= [ \"IN\" | \"NOT IN\" | \"in\" | \"not in\" ] \n" +
"<array> ::= ( \"[\" \"]\" | \"[\" ( \",\" <tag_value> )* ) \n" +
"<tag_name> ::= <identifier> \n" +
Expand Down
Expand Up @@ -267,7 +267,7 @@ public Response deleteTags(
"<tag_name> <array_operator> <array> ) \n" +
"<not> ::= [ \"NOT\" | \"not\" ] \n" +
"<logical_operator> ::= [ \"AND\" | \"OR\" | \"and\" | \"or\" ] \n" +
"<boolean_operator> ::= [ \"==\" | \"!=\" ] \n" +
"<boolean_operator> ::= [ \"=\" | \"!=\" ] \n" +
"<array_operator> ::= [ \"IN\" | \"NOT IN\" | \"in\" | \"not in\" ] \n" +
"<array> ::= ( \"[\" \"]\" | \"[\" ( \",\" <tag_value> )* ) \n" +
"<tag_name> ::= <identifier> \n" +
Expand Down Expand Up @@ -369,7 +369,7 @@ We maintain old tags criteria as deprecated (it can be removed in a next major v
"<tag_name> <array_operator> <array> ) \n" +
"<not> ::= [ \"NOT\" | \"not\" ] \n" +
"<logical_operator> ::= [ \"AND\" | \"OR\" | \"and\" | \"or\" ] \n" +
"<boolean_operator> ::= [ \"==\" | \"!=\" ] \n" +
"<boolean_operator> ::= [ \"=\" | \"!=\" ] \n" +
"<array_operator> ::= [ \"IN\" | \"NOT IN\" | \"in\" | \"not in\" ] \n" +
"<array> ::= ( \"[\" \"]\" | \"[\" ( \",\" <tag_value> )* ) \n" +
"<tag_name> ::= <identifier> \n" +
Expand Down Expand Up @@ -478,7 +478,7 @@ public Response deleteEvent(
"<tag_name> <array_operator> <array> ) \n" +
"<not> ::= [ \"NOT\" | \"not\" ] \n" +
"<logical_operator> ::= [ \"AND\" | \"OR\" | \"and\" | \"or\" ] \n" +
"<boolean_operator> ::= [ \"==\" | \"!=\" ] \n" +
"<boolean_operator> ::= [ \"=\" | \"!=\" ] \n" +
"<array_operator> ::= [ \"IN\" | \"NOT IN\" | \"in\" | \"not in\" ] \n" +
"<array> ::= ( \"[\" \"]\" | \"[\" ( \",\" <tag_value> )* ) +\n" +
"<tag_name> ::= <identifier> \n" +
Expand Down

0 comments on commit b099d63

Please sign in to comment.