This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch camel-2.24.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 21bad408db4c23a3e3ef829dcbdc6bae44142d68 Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Nov 6 11:04:44 2019 +0100 CAMEL-14143 - Fixed CS --- .../camel/component/slack/helper/SlackMessage.java | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/components/camel-slack/src/main/java/org/apache/camel/component/slack/helper/SlackMessage.java b/components/camel-slack/src/main/java/org/apache/camel/component/slack/helper/SlackMessage.java index 00598b5..855e7f4 100644 --- a/components/camel-slack/src/main/java/org/apache/camel/component/slack/helper/SlackMessage.java +++ b/components/camel-slack/src/main/java/org/apache/camel/component/slack/helper/SlackMessage.java @@ -53,14 +53,14 @@ public class SlackMessage { } public String getUser() { - return user; - } + return user; + } - public void setUser(String user) { - this.user = user; - } + public void setUser(String user) { + this.user = user; + } - public String getIconUrl() { + public String getIconUrl() { return iconUrl; } @@ -231,18 +231,23 @@ public class SlackMessage { public String getTitle() { return title; } + public void setTitle(String title) { this.title = title; } + public String getValue() { return value; } + public void setValue(String value) { this.value = value; } + public Boolean isShortValue() { return shortValue; } + public void setShortValue(Boolean shortValue) { this.shortValue = shortValue; } @@ -250,4 +255,3 @@ public class SlackMessage { } } -
