We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b39b08 commit 6cd9e9bCopy full SHA for 6cd9e9b
captchaservice-backend/src/main/java/de/muenchen/captchaservice/data/ExtendedPayload.java
@@ -1,17 +1,17 @@
1
package de.muenchen.captchaservice.data;
2
3
+import lombok.Getter;
4
+import lombok.Setter;
5
import org.altcha.altcha.Altcha;
6
7
+@Getter
8
+@Setter
9
public class ExtendedPayload extends Altcha.Payload {
10
11
+ /**
12
+ * The time taken (in milliseconds) to solve the captcha challenge.
13
+ * This field tracks how long it took for the user/client to complete the captcha.
14
+ */
15
private Long took;
16
- public Long getTook() {
- return took;
- }
-
- public void setTook(Long took) {
- this.took = took;
17
}
0 commit comments