diff options
Diffstat (limited to 'server/sonar-docs/src/pages/analysis/security_configuration.md')
-rw-r--r-- | server/sonar-docs/src/pages/analysis/security_configuration.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/server/sonar-docs/src/pages/analysis/security_configuration.md b/server/sonar-docs/src/pages/analysis/security_configuration.md index b5d815c305c..6d0ebf0f169 100644 --- a/server/sonar-docs/src/pages/analysis/security_configuration.md +++ b/server/sonar-docs/src/pages/analysis/security_configuration.md @@ -256,6 +256,13 @@ Your JSON file should include the rule you're adding a custom element to, the el | } | } | ] +| }, +| "common": { +| "sources": [ +| { +| "methodId": "my.package.Input#getUserInput()Ljava/lang/String;" +| } +| ] | } | } |``` @@ -339,6 +346,13 @@ Your JSON file should include the rule you're adding a custom element to, the el | } | } | ] +| }, +| "common": { +| "sources": [ +| { +| "methodId": "My\\Namespace\\ClassName\\Input::getUserInput" +| } +| ] | } | } |``` @@ -423,6 +437,13 @@ Your JSON file should include the rule you're adding a custom element to, the el | } | } | ] +| }, +| "common": { +| "sources": [ +| { +| "methodId": "My.Namespace.Input.GetUserInput()" +| } +| ] | } | } |``` @@ -506,6 +527,13 @@ Your JSON file should include the rule you're adding a custom element to, the el | } | } | ] +| }, +| "common": { +| "sources": [ +| { +| "methodId": "my.namespace.Input.get_input" +| } +| ] | } | } | |