public class NotifierPage extends DemoPage {
@SuppressWarnings("serial")
public NotifierPage() {
final NotifierWebMarkupContainer notifier = new NotifierWebMarkupContainer(
"notifier1");
add(notifier);
add(new AjaxLink<Void>("notifier.open1") {
@Override
public void onClick(AjaxRequestTarget target) {
notifier.create(
target,
"Test Notification",
"This is an example of the default config, and will fade out after five seconds.");
}
});