Example usage for org.apache.wicket.markup.html.link StatelessLink subclass-usage

List of usage examples for org.apache.wicket.markup.html.link StatelessLink subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.link StatelessLink subclass-usage.

Usage

From source file com.googlecode.ounit.AnchorLink.java

/**
 * A link that points to an object in the same page.
 * 
 * @author anttix
 *
 */

From source file com.googlecode.wicket.jquery.ui.markup.html.link.StatelessLink.java

/**
 * Provides a Kendo UI button based on a built-in {@code StatelessLink}
 *
 * @param <T> the model object type
 * @author Sebastien Briquet - sebfz1
 * @since 6.19.0

From source file com.googlecode.wicket.kendo.ui.markup.html.link.StatelessLink.java

/**
 * Provides a Kendo UI button based on a built-in {@code StatelessLink}
 *
 * @param <T> the model object type
 * @author Sebastien Briquet - sebfz1
 * @since 6.19.0

From source file fiftyfive.wicket.shiro.markup.LoginLink.java

/**
 * A link that sends the user to the login page. Upon successful login, the
 * user will be returned to the home page, or to a pre-determined page specified via the
 * constructor. This link is not visible to authenticated/remembered users.
 * 
 * @author Matt Brictson

From source file org.cast.cwm.data.component.LogoutLink.java

public class LogoutLink extends StatelessLink<Void> {

    @Inject
    ICwmSessionService cwmSessionService;

    private static final long serialVersionUID = 1L;

From source file org.devproof.portal.core.module.common.component.ExternalRedirectLink.java

/**
 * External link with redirection (if you wanna count the hits)
 *
 * @author Carsten Hufe
 */
public class ExternalRedirectLink extends StatelessLink {

From source file org.devproof.portal.core.module.common.component.InternalDownloadLink.java

/**
 * Internal download link with file parameter
 *
 * @author Carsten Hufe
 */
public abstract class InternalDownloadLink extends StatelessLink {

From source file org.jabylon.rest.ui.navbar.LoginPanel.java

class LogoutLink extends StatelessLink<String> {

    /**
     *
     */
    private static final long serialVersionUID = -8192886483968891414L;

From source file org.jabylon.rest.ui.wicket.panels.PropertyListPanel.java

class DeleteLink extends StatelessLink<Void> {

    private static final long serialVersionUID = 8205155656605708520L;

    @Inject
    private URIResolver resolver;

From source file org.wicketstuff.servlet3.secure.example.ui.common.AdminLink.java

/**
 * Example Helper class to demonstrate using an AuthorizedAction to only render
 * a link if the authenticated user has proper authorization. Once again wicket-auth-roles
 * gets the credit for this feature!
 *
 * @author jsarman