Jean-Francois Leveque

Empty constructor methods are better commented inside, according to Sonar

......@@ -33,8 +33,8 @@ public class ListPublisherActionsView implements Serializable {
this.publisherService = publisherService;
}
//no args constructor to make it proxyable
ListPublisherActionsView() {
//no args constructor to make it proxyable
}
public void setView() {
......
......@@ -35,8 +35,8 @@ public class ListPublisherVersionsView implements Serializable {
this.publisherService = publisherService;
}
//no args constructor to make it proxyable
ListPublisherVersionsView() {
//no args constructor to make it proxyable
}
public PublisherAction getLastValidate(Publisher publisher) {
......
......@@ -41,8 +41,8 @@ public class PublisherServiceDefault implements PublisherService {
this.sharedService = sharedService;
}
//no args constructor to make it proxyable
PublisherServiceDefault() {
//no args constructor to make it proxyable
}
@Override
......
......@@ -57,8 +57,8 @@ public class PublisherVersionView implements Serializable {
this.sharedService = sharedService;
}
//no args constructor to make it proxyable
PublisherVersionView() {
//no args constructor to make it proxyable
}
@PostConstruct
......
......@@ -50,8 +50,8 @@ public class UpdateUserBean {
this.sharedService = sharedService;
}
//no args constructor to make it proxyable
UpdateUserBean() {
//no args constructor to make it proxyable
}
......
......@@ -18,8 +18,8 @@ public class AddCountryView implements Serializable {
private transient String countryName;
//no args constructor to make it proxyable
public AddCountryView() {
//no args constructor to make it proxyable
}
@Inject
......
......@@ -17,8 +17,8 @@ public class ListCountriesView implements Serializable {
private transient List<Country> countries;
//no args constructor to make it proxyable
public ListCountriesView() {
//no args constructor to make it proxyable
}
@Inject
......