Fix spelling

This commit is contained in:
Igor Kulikov 2018-05-21 17:41:13 +03:00
parent 0cb263b564
commit f24aa3c284
4 changed files with 6 additions and 6 deletions

View File

@ -42,7 +42,7 @@ import static org.thingsboard.rule.engine.DonAsynchron.withCallback;
name = "aws sns",
configClazz = TbSnsNodeConfiguration.class,
nodeDescription = "Publish message to the AWS SNS",
nodeDetails = "Will publish message payload to the AWS SNS topic. Outbound message will contain responce fields " +
nodeDetails = "Will publish message payload to the AWS SNS topic. Outbound message will contain response fields " +
"(<code>messageId</code>, <code>requestId</code>) in the Message Metadata from the AWS SNS. " +
"For example <b>requestId</b> field can be accessed with <code>metadata.requestId</code>.",
uiResources = {"static/rulenode/rulenode-core-config.js"},

View File

@ -46,7 +46,7 @@ import static org.thingsboard.rule.engine.DonAsynchron.withCallback;
configClazz = TbSqsNodeConfiguration.class,
nodeDescription = "Publish messages to the AWS SQS",
nodeDetails = "Will publish message payload and metadata attributes to the AWS SQS queue. Outbound message will contain " +
"responce fields (<code>messageId</code>, <code>requestId</code>, <code>messageBodyMd5</code>, <code>messageAttributesMd5</code>" +
"response fields (<code>messageId</code>, <code>requestId</code>, <code>messageBodyMd5</code>, <code>messageAttributesMd5</code>" +
", <code>sequenceNumber</code>) in the Message Metadata from the AWS SQS." +
" For example <b>requestId</b> field can be accessed with <code>metadata.requestId</code>.",
uiResources = {"static/rulenode/rulenode-core-config.js"},

View File

@ -33,7 +33,7 @@ import java.util.concurrent.ExecutionException;
configClazz = TbKafkaNodeConfiguration.class,
nodeDescription = "Publish messages to Kafka server",
nodeDetails = "Will send record via Kafka producer to Kafka server. " +
"Outbound message will contain responce fields (<code>offset</code>, <code>partition</code>, <code>topic</code>)" +
"Outbound message will contain response fields (<code>offset</code>, <code>partition</code>, <code>topic</code>)" +
" from the Kafka in the Message Metadata. For example <b>partition</b> field can be accessed with <code>metadata.partition</code>.",
uiResources = {"static/rulenode/rulenode-core-config.js"},
configDirective = "tbActionNodeKafkaConfig",

View File

@ -46,9 +46,9 @@ import java.util.concurrent.TimeUnit;
nodeDescription = "Invoke REST API calls to external REST server",
nodeDetails = "Will invoke REST API call <code>GET | POST | PUT | DELETE</code> to external REST server. " +
"Message payload added into Request body. Configured attributes can be added into Headers from Message Metadata." +
" Outbound message will contain responce fields " +
"(<code>status</code>, <code>statusCode</code>, <code>statusReason</code> and responce <code>headers</code>) in the Message Metadata." +
" Responce body saved in outbound Message payload. " +
" Outbound message will contain response fields " +
"(<code>status</code>, <code>statusCode</code>, <code>statusReason</code> and response <code>headers</code>) in the Message Metadata." +
" Response body saved in outbound Message payload. " +
"For example <b>statusCode</b> field can be accessed with <code>metadata.statusCode</code>.",
uiResources = {"static/rulenode/rulenode-core-config.js"},
configDirective = "tbActionNodeRestApiCallConfig",