File tree Expand file tree Collapse file tree
src/main/java/ee/taltech/arete/java Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77 <groupId >ee.taltech.arete.java</groupId >
88 <artifactId >client</artifactId >
9- <version >2.0.3 </version >
9+ <version >2.0.4 </version >
1010 <build >
1111 <plugins >
1212 <plugin >
Original file line number Diff line number Diff line change 11package ee .taltech .arete .java .request .tester ;
22
3+ import com .fasterxml .jackson .annotation .JsonClassDescription ;
34import com .fasterxml .jackson .annotation .JsonIgnoreProperties ;
4- import lombok .AllArgsConstructor ;
5- import lombok .Builder ;
6- import lombok .Getter ;
5+ import lombok .*;
76
87import java .util .HashSet ;
98import java .util .Set ;
109
10+ @ ToString
1111@ Getter
1212@ Builder
13+ @ NoArgsConstructor
1314@ AllArgsConstructor
15+ @ JsonClassDescription ("Input that TestRunner gets" )
1416@ JsonIgnoreProperties (ignoreUnknown = true )
1517public class DockerParameters {
16- private final String uniid ;
18+ private String uniid ;
1719
1820 @ Builder .Default
19- private final Set <String > systemExtra = new HashSet <>();
21+ private Set <String > systemExtra = new HashSet <>();
2022
2123 @ Builder .Default
22- private final Integer timeout = 120 ;
24+ private Integer timeout = 120 ;
2325
24- private final String commitMessage ;
26+ private String commitMessage ;
2527
2628 @ Builder .Default
27- private final String contentRoot = "/student" ;
29+ private String contentRoot = "/student" ;
2830
29- private final String extra ;
31+ private String extra ;
3032
3133 @ Builder .Default
32- private final String testRoot = "/tester" ;
34+ private String testRoot = "/tester" ;
3335}
Original file line number Diff line number Diff line change @@ -132,3 +132,4 @@ public class AreteResponseDTO {
132132 @ Builder .Default
133133 private String version = "2.0" ;
134134}
135+
You can’t perform that action at this time.
0 commit comments