Jean-Francois Leveque

On respecte le contrat Serializable.

...@@ -13,9 +13,9 @@ import java.util.List; ...@@ -13,9 +13,9 @@ import java.util.List;
13 @RequestScoped 13 @RequestScoped
14 public class ListCountriesView implements Serializable { 14 public class ListCountriesView implements Serializable {
15 15
16 - private SharedService sharedService; 16 + private transient SharedService sharedService;
17 17
18 - private List<Country> countries; 18 + private transient List<Country> countries;
19 19
20 public ListCountriesView() { 20 public ListCountriesView() {
21 } 21 }
......