List of usage examples for org.apache.wicket.authroles.authentication AuthenticatedWebApplication subclass-usage
From source file fi.ilmoeuro.membertrack.ui.MtApplication.java
@Slf4j @RequiredArgsConstructor public final class MtApplication extends AuthenticatedWebApplication { public static @Data class Config implements Serializable { private static final long serialVersionUID = 0l;
From source file io.ucoin.ucoinj.web.application.Application.java
@Component("wicketApplication") public class Application extends AuthenticatedWebApplication { private static final Logger log = LoggerFactory.getLogger(Application.class); private WebConfiguration config;
From source file it.av.youeat.web.YoueatApplication.java
/**
* Wicket Application.
*
* @author <a href='mailto:a.vincelli@gmail.com'>Alessandro Vincelli</a>
*
*/
From source file net.mad.ads.manager.web.application.ManagerApplication.java
/** * A role-authorized, authenticated web application in just a few lines of code. * */ public class ManagerApplication extends AuthenticatedWebApplication implements IThemableApplication {
From source file net.rrm.ehour.ui.EhourWebApplication.java
/** * Base config for wicket eHour webapp */ public class EhourWebApplication extends AuthenticatedWebApplication { private static final Logger LOGGER = Logger.getLogger(EhourWebApplication.class);
From source file org.apache.isis.viewer.wicket.viewer.IsisWicketApplication.java
/**
* Main application, subclassing the Wicket {@link Application} and
* bootstrapping Isis.
*
* <p>
* Its main responsibility is to allow the set of {@link ComponentFactory}s used
From source file org.apache.karaf.webconsole.core.internal.WebConsoleApplication.java
/** * Root class for wicket. */ public class WebConsoleApplication extends AuthenticatedWebApplication { public WebConsoleApplication() {
From source file org.apache.openmeetings.web.app.Application.java
public class Application extends AuthenticatedWebApplication implements IApplication { private static final Logger log = getLogger(Application.class, webAppRootKey); private static boolean isInstalled; private static MultiKeyMap<String, org.apache.openmeetings.web.app.Client> ONLINE_USERS = new MultiKeyMap<>(); private static Map<String, org.apache.openmeetings.web.app.Client> INVALID_SESSIONS = new ConcurrentHashMap<String, org.apache.openmeetings.web.app.Client>(); private static Map<Long, Set<Client>> ROOMS = new ConcurrentHashMap<Long, Set<Client>>();
From source file org.apache.syncope.client.console.SyncopeConsoleApplication.java
public class SyncopeConsoleApplication extends AuthenticatedWebApplication { private static final Logger LOG = LoggerFactory.getLogger(SyncopeConsoleApplication.class); private static final String CONSOLE_PROPERTIES = "console.properties";
From source file org.artifactory.webapp.wicket.application.ArtifactoryApplication.java
/** * @author Yoav Landman */ public class ArtifactoryApplication extends AuthenticatedWebApplication implements SiteMapAware { private static final Logger log = LoggerFactory.getLogger(ArtifactoryApplication.class); private static final String SHARED_RESOURCES_PATH = "wicket/resource/";