From 1414177d9f8a71fdeb524f6720023d36caacc276 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Tue, 20 Jan 2015 23:25:47 +0100 Subject: SONAR-5960 SONAR-5906 guess author and assignee of new issues --- .../sonar/batch/protocol/output/component/ReportComponent.java | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'sonar-batch-protocol/src/main/java') diff --git a/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/output/component/ReportComponent.java b/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/output/component/ReportComponent.java index 37b64b87e47..37768d82401 100644 --- a/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/output/component/ReportComponent.java +++ b/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/output/component/ReportComponent.java @@ -41,6 +41,7 @@ public class ReportComponent { private int snapshotId; private String path; private String name; + private String uuid; private Type type; // Only for files private Boolean isTest; @@ -84,6 +85,15 @@ public class ReportComponent { return path; } + public ReportComponent setUuid(String s) { + this.uuid = s; + return this; + } + + public String uuid() { + return uuid; + } + public ReportComponent setName(@Nullable String name) { this.name = name; return this; -- cgit v1.2.3