001/*
002 * (C) Copyright 2006-2009 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Nuxeo - initial API and implementation
011 *
012 * $Id: DashBoardActionsBean.java 29574 2008-01-23 16:08:12Z gracinet $
013 */
014package org.nuxeo.ecm.webapp.dashboard;
015
016/**
017 * Encapsulate navigation to Dashboard in order to provide more flexibility - dashboard view may depend on User/Browser
018 * - dashbord may need pre-processing for lazy creation
019 *
020 * @author Thierry Delprat
021 */
022public interface DashboardNavigationHelper {
023
024    String navigateToDashboard();
025
026}