Example usage for org.apache.wicket Page info

List of usage examples for org.apache.wicket Page info

Introduction

In this page you can find the example usage for org.apache.wicket Page info.

Prototype

@Override
public final void info(final Serializable message) 

Source Link

Document

Registers an informational feedback message for this component

Usage

From source file:org.artifactory.webapp.actionable.action.ZapAction.java

License:Open Source License

@Override
public void onAction(RepoAwareItemEvent e) {
    RepoPath repoPath = e.getRepoPath();
    getRepoService().zap(repoPath);//w  w w  .  ja  v  a  2 s.  c om
    AjaxRequestTarget target = e.getTarget();
    WebMarkupContainer nodePanelContainer = e.getTargetComponents().getNodePanelContainer();
    target.add(nodePanelContainer);
    Page page = target.getPage();
    page.info("Completed zapping item: '" + repoPath + "'");
}