Jean-Francois Leveque

Ajout de commentaires pour les constructeurs vides

...@@ -18,6 +18,7 @@ public class AddCountryView implements Serializable { ...@@ -18,6 +18,7 @@ public class AddCountryView implements Serializable {
18 18
19 private transient String countryName; 19 private transient String countryName;
20 20
21 + //no args constructor to make it proxyable
21 public AddCountryView() { 22 public AddCountryView() {
22 } 23 }
23 24
......
...@@ -17,6 +17,7 @@ public class ListCountriesView implements Serializable { ...@@ -17,6 +17,7 @@ public class ListCountriesView implements Serializable {
17 17
18 private transient List<Country> countries; 18 private transient List<Country> countries;
19 19
20 + //no args constructor to make it proxyable
20 public ListCountriesView() { 21 public ListCountriesView() {
21 } 22 }
22 23
......