Skip to content

Commit

Permalink
feat(jdbc): Fix descriptions following QA (#2353) (#2355)
Browse files Browse the repository at this point in the history
* feat(jdbc): Fix descriptions following QA
  • Loading branch information
github-actions[bot] committed Apr 30, 2024
1 parent 8f68bd2 commit fc3fae3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,8 @@
}, {
"id" : "connection.uri",
"label" : "URI",
"description" : "URI should contain JDBC driver, username, password, host name, and port number. See the <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#uri-connection\" target=\"_blank\">documentation</a>.)",
"description" : "URI should contain JDBC driver, username, password, host name, and port number. For more information, see the <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#uri-connection\" target=\"_blank\">documentation</a>.)",
"optional" : false,
"value" : "jdbc:postgresql://localhost:5432/mydb",
"constraints" : {
"notEmpty" : true,
"pattern" : {
Expand Down Expand Up @@ -243,8 +242,8 @@
"type" : "Boolean"
}, {
"id" : "data.query",
"label" : "Insert the SQL Query to execute",
"description" : "The SQL query to execute. You can use named, positional or binding <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#variables\" target=\"_blank\">parameters</a>",
"label" : "SQL Query to execute",
"description" : "You can use named, positional or binding <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#variables\" target=\"_blank\">parameters</a>",
"optional" : false,
"constraints" : {
"notEmpty" : true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,8 @@
}, {
"id" : "connection.uri",
"label" : "URI",
"description" : "URI should contain JDBC driver, username, password, host name, and port number. See the <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#uri-connection\" target=\"_blank\">documentation</a>.)",
"description" : "URI should contain JDBC driver, username, password, host name, and port number. For more information, see the <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#uri-connection\" target=\"_blank\">documentation</a>.)",
"optional" : false,
"value" : "jdbc:postgresql://localhost:5432/mydb",
"constraints" : {
"notEmpty" : true,
"pattern" : {
Expand Down Expand Up @@ -238,8 +237,8 @@
"type" : "Boolean"
}, {
"id" : "data.query",
"label" : "Insert the SQL Query to execute",
"description" : "The SQL query to execute. You can use named, positional or binding <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#variables\" target=\"_blank\">parameters</a>",
"label" : "SQL Query to execute",
"description" : "You can use named, positional or binding <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#variables\" target=\"_blank\">parameters</a>",
"optional" : false,
"constraints" : {
"notEmpty" : true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ public record JdbcRequestData(
@NotBlank
@TemplateProperty(
id = "query",
label = "Insert the SQL Query to execute",
label = "SQL Query to execute",
group = "query",
constraints = @TemplateProperty.PropertyConstraints(notEmpty = true),
description =
"The SQL query to execute. You can use named, positional or binding <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#variables\" target=\"_blank\">parameters</a>")
"You can use named, positional or binding <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#variables\" target=\"_blank\">parameters</a>")
String query,
@TemplateProperty(
id = "variables",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ public record UriConnection(
@TemplateProperty(
group = "connection",
label = "URI",
defaultValue = "jdbc:postgresql://localhost:5432/mydb",
description =
"URI should contain JDBC driver, username, password, host name, and port number. See the <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#uri-connection\" target=\"_blank\">documentation</a>.)")
"URI should contain JDBC driver, username, password, host name, and port number. For more information, see the <a href=\"https://docs.camunda.io/docs/next/components/connectors/out-of-the-box-connectors/sql/#uri-connection\" target=\"_blank\">documentation</a>.)")
String uri,
@TemplateProperty(
group = "connection",
Expand Down

0 comments on commit fc3fae3

Please sign in to comment.