Skip to content

Commit

Permalink
NO-ISSUE: Fix process-decisions-quarkus not starting due to missing g…
Browse files Browse the repository at this point in the history
…etters/setters (#1981)
  • Loading branch information
jomarko authored Jul 15, 2024
1 parent 742b4e4 commit e79f1b5
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ public Driver(String id, String name, String state, String city, Integer points,
this.licenseExpiration = licenseExpiration;
}

public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public String getName() {
return name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ public Driver(String id, String name, String state, String city, Integer points,
this.licenseExpiration = licenseExpiration;
}

public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public String getName() {
return name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ public Driver(String id, String name, String state, String city, Integer points,
this.licenseExpiration = licenseExpiration;
}

public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public String getName() {
return name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ public Driver(String id, String name, String state, String city, Integer points,
this.licenseExpiration = licenseExpiration;
}

public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public String getName() {
return name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ public Driver(String id, String name, String state, String city, Integer points,
this.licenseExpiration = licenseExpiration;
}

public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public String getName() {
return name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ public Driver(String id, String name, String state, String city, Integer points,
this.licenseExpiration = licenseExpiration;
}

public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public String getName() {
return name;
}
Expand Down

0 comments on commit e79f1b5

Please sign in to comment.