Skip to content

Commit 8002fa5

Browse files
author
envomp
committed
default constructor
1 parent f356040 commit 8002fa5

3 files changed

Lines changed: 14 additions & 11 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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>
Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,35 @@
11
package ee.taltech.arete.java.request.tester;
22

3+
import com.fasterxml.jackson.annotation.JsonClassDescription;
34
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4-
import lombok.AllArgsConstructor;
5-
import lombok.Builder;
6-
import lombok.Getter;
5+
import lombok.*;
76

87
import java.util.HashSet;
98
import java.util.Set;
109

10+
@ToString
1111
@Getter
1212
@Builder
13+
@NoArgsConstructor
1314
@AllArgsConstructor
15+
@JsonClassDescription("Input that TestRunner gets")
1416
@JsonIgnoreProperties(ignoreUnknown = true)
1517
public 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
}

src/main/java/ee/taltech/arete/java/response/arete/AreteResponseDTO.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,4 @@ public class AreteResponseDTO {
132132
@Builder.Default
133133
private String version = "2.0";
134134
}
135+

0 commit comments

Comments
 (0)