Skip to content

Commit 9a660cb

Browse files
author
s.pirohov
committed
v0.0.9
1 parent c63d35f commit 9a660cb

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/io/reqover/core/model/coverage/CoverageInfo.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
package io.reqover.core.model.coverage;
22

33
import java.util.List;
4+
import java.util.UUID;
45

56
public class CoverageInfo {
7+
private String id = UUID.randomUUID().toString();
68
private UrlPath urlPath;
79
private String method;
810
private String statusCode;
@@ -14,6 +16,14 @@ public CoverageInfo() {
1416

1517
}
1618

19+
public String getId() {
20+
return id;
21+
}
22+
23+
public void setId(String id) {
24+
this.id = id;
25+
}
26+
1727
public UrlPath getUrlPath() {
1828
return urlPath;
1929
}

0 commit comments

Comments
 (0)