us.jts.commander.AjaxUpdateEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commander Show documentation
Show all versions of commander Show documentation
Commander is an ANSI RBAC compliant administrative Web UI
/*
* Copyright (c) 2013, JoshuaTree Software. All rights reserved.
*/
package us.jts.commander;
import org.apache.wicket.ajax.AjaxRequestTarget;
/**
* @author Shawn McKinney
* @version $Rev$
*/
public class AjaxUpdateEvent
{
private final AjaxRequestTarget target;
public AjaxUpdateEvent(AjaxRequestTarget target)
{
this.target = target;
}
public AjaxRequestTarget getAjaxRequestTarget()
{
return target;
}
}