Bookmarking
The bookmarking() element indicates if an action (with safe action semantics) is automatically bookmarked.
In the Web UI (Wicket viewer), a link to a bookmarked object is shown in the bookmarks panel.
|
The Web UI (Wicket viewer) supports |
For example:
public class ToDoItems {
@Action(semantics=SemanticsOf.SAFE)
@ActionLayout(
bookmarking=BookmarkPolicy.AS_ROOT,
sequence = "1")
public List<ToDoItem> notYetComplete() {
...
}
}
indicates that the notYetComplete() action is bookmarkable.
|
The enum value |