blob: 95d62f0a7427fa95607d0e07ec2417feed076b68 [file] [log] [blame]
package org.apache.karaf.webconsole.core;
import org.apache.wicket.Application;
import org.apache.wicket.RequestCycle;
import org.apache.wicket.Session;
public interface ApplicationReference {
Application getApplication();
Session getSession();
RequestCycle getRequestCycle();
}