Skip to content

Commit b5f91d7

Browse files
committed
update no args constructor
1 parent 34cd3f3 commit b5f91d7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/com/amadeus/resources/FlightOrder.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import lombok.AllArgsConstructor;
44
import lombok.Getter;
5+
import lombok.NoArgsConstructor;
56
import lombok.Setter;
67
import lombok.ToString;
78

@@ -32,6 +33,7 @@ protected AssociatedRecord() {
3233
}
3334

3435
@AllArgsConstructor
36+
@NoArgsConstructor
3537
@ToString
3638
public static class Traveler {
3739

@@ -43,6 +45,7 @@ public static class Traveler {
4345
}
4446

4547
@AllArgsConstructor
48+
@NoArgsConstructor
4649
@ToString
4750
public static class Name {
4851

@@ -51,6 +54,7 @@ public static class Name {
5154
}
5255

5356
@AllArgsConstructor
57+
@NoArgsConstructor
5458
@ToString
5559
public static class Contact {
5660

@@ -59,6 +63,7 @@ public static class Contact {
5963
}
6064

6165
@AllArgsConstructor
66+
@NoArgsConstructor
6267
@ToString
6368
public static class Document {
6469

@@ -71,6 +76,7 @@ public static class Document {
7176
}
7277

7378
@AllArgsConstructor
79+
@NoArgsConstructor
7480
@ToString
7581
public static class Phone {
7682

0 commit comments

Comments
 (0)