You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/APIGatewayV2HTTPEvent.java
+6-19
Original file line number
Diff line number
Diff line change
@@ -15,22 +15,16 @@
15
15
16
16
importlombok.AllArgsConstructor;
17
17
importlombok.Builder;
18
-
importlombok.EqualsAndHashCode;
19
-
importlombok.Getter;
18
+
importlombok.Data;
20
19
importlombok.NoArgsConstructor;
21
-
importlombok.Setter;
22
20
23
21
importjava.util.List;
24
22
importjava.util.Map;
25
23
26
-
importorg.joda.time.DateTime;
27
-
28
24
@AllArgsConstructor
29
25
@Builder(setterPrefix = "with")
30
-
@EqualsAndHashCode
31
-
@Getter
26
+
@Data
32
27
@NoArgsConstructor
33
-
@Setter
34
28
publicclassAPIGatewayV2HTTPEvent {
35
29
privateStringversion;
36
30
privateStringrouteKey;
@@ -47,10 +41,8 @@ public class APIGatewayV2HTTPEvent {
47
41
48
42
@AllArgsConstructor
49
43
@Builder(setterPrefix = "with")
50
-
@EqualsAndHashCode
51
-
@Getter
44
+
@Data
52
45
@NoArgsConstructor
53
-
@Setter
54
46
publicstaticclassRequestContext {
55
47
privateStringrouteKey;
56
48
privateStringaccountId;
@@ -65,19 +57,15 @@ public static class RequestContext {
Copy file name to clipboardExpand all lines: aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/APIGatewayV2HTTPResponse.java
0 commit comments