Example usage for com.vaadin.navigator View interface-usage

List of usage examples for com.vaadin.navigator View interface-usage

Introduction

In this page you can find the example usage for com.vaadin.navigator View interface-usage.

Usage

From source file au.org.scoutmaster.views.ContactView.java

@Menu(display = "Contact Management", path = "Members")
public class ContactView extends BaseCrudView<Contact> implements View, Selected<Contact>, HelpProvider {

    @Override
    protected String getTitleText() {
        return "Contact Management";

From source file by.bigvova.views.AccessDeniedView.java

/**
 * View that is shown when the user attempts to access a restricted view.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
@SpringComponent

From source file by.bigvova.views.AdminView.java

/**
 * View that is available to administrators only.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
@Secured("ROLE_ADMIN")

From source file by.bigvova.views.ErrorView.java

/**
 * View that is shown when the user tries to navigate to a view that does not exist. Please not
 * this view is not Spring-managed; the Navigator will take care of instantiating it when needed.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */

From source file by.bigvova.views.HomeView.java

/**
 * When the user logs in and there is no view to navigate to, this view will be shown.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */

From source file by.bigvova.views.UserView.UserView.java

/**
 * View that is available for all users.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
@Secured({ "ROLE_USER", "ROLE_ADMIN" })

From source file ch.bfh.blue.UI.AvailableSpacesView.java

/**
 * This view provides the user with the options to either choose a room and get
 * the available time frames for the room or to select a time frame and get all
 * rooms that are free in this time frame
 *
 * @author SRS-Team

From source file ch.bfh.blue.UI.HomeView.java

/**
 * This is the main page which is also set as default in the navigator
 *
 * @author SRS-Team
 *
 */

From source file ch.bfh.blue.UI.LoginView.java

/**
 * This view provides everything necessary to login with username and password
 * @author SRS-Team
 *
 */

From source file ch.bfh.blue.UI.RegisterView.java

/**
 * This view provides everything necessary to create
 * a new account with username and password
 * @author SRS-Team
 *
 */