We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c63d35f commit 9a660cbCopy full SHA for 9a660cb
src/main/java/io/reqover/core/model/coverage/CoverageInfo.java
@@ -1,8 +1,10 @@
1
package io.reqover.core.model.coverage;
2
3
import java.util.List;
4
+import java.util.UUID;
5
6
public class CoverageInfo {
7
+ private String id = UUID.randomUUID().toString();
8
private UrlPath urlPath;
9
private String method;
10
private String statusCode;
@@ -14,6 +16,14 @@ public CoverageInfo() {
14
16
15
17
}
18
19
+ public String getId() {
20
+ return id;
21
+ }
22
+
23
+ public void setId(String id) {
24
+ this.id = id;
25
26
27
public UrlPath getUrlPath() {
28
return urlPath;
29
0 commit comments