This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 66ca893 Fixed CS for Camel-Jgroups-raft-starter 66ca893 is described below commit 66ca8936d10f5337d30c3ead4b4831299e5a34af Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Feb 6 15:34:14 2019 +0100 Fixed CS for Camel-Jgroups-raft-starter --- .../JGroupsRaftClusterServiceConfiguration.java | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/platforms/spring-boot/components-starter/camel-jgroups-raft-starter/src/main/java/org/apache/camel/component/jgroups/raft/springboot/cluster/springboot/JGroupsRaftClusterServiceConfiguration.java b/platforms/spring-boot/components-starter/camel-jgroups-raft-starter/src/main/java/org/apache/camel/component/jgroups/raft/springboot/cluster/springboot/JGroupsRaftClusterServiceConfiguration.java index 7ff8aed..c06ef87 100644 --- a/platforms/spring-boot/components-starter/camel-jgroups-raft-starter/src/main/java/org/apache/camel/component/jgroups/raft/springboot/cluster/springboot/JGroupsRaftClusterServiceConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-jgroups-raft-starter/src/main/java/org/apache/camel/component/jgroups/raft/springboot/cluster/springboot/JGroupsRaftClusterServiceConfiguration.java @@ -30,20 +30,11 @@ public class JGroupsRaftClusterServiceConfiguration { */ private String id; - public String getRaftId() { - return raftId; - } - - public void setRaftId(String raftId) { - this.raftId = raftId; - } - /** * JGroups-raft ID */ private String raftId; - /** * JGrups-raft configuration File name */ @@ -54,6 +45,13 @@ public class JGroupsRaftClusterServiceConfiguration { */ private String jgroupsRaftClusterName; + public String getRaftId() { + return raftId; + } + + public void setRaftId(String raftId) { + this.raftId = raftId; + } public boolean isEnabled() { return enabled;