Showing
2 changed files
with
2 additions
and
0 deletions
... | @@ -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 | ... | ... |
-
Please register or login to post a comment