Jean-Francois Leveque

Documentation

......@@ -51,6 +51,9 @@ public class ListPublisherActionsView implements Serializable {
//no args constructor to make it proxyable
}
/**
* Sets view up according to availability of Id in stringId
*/
@PostConstruct
@RequestAction
public void init() {
......@@ -72,6 +75,9 @@ public class ListPublisherActionsView implements Serializable {
}
}
/**
* Filters on Id
*/
public void filterOnID() {
publisherActions = publisherActions.stream()
.filter(action -> action.getPublisher().getPublisherId() == publisherId)
......