blob: 389534e2bd845b334df97a9303c5dfcbaa9c08de [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Rushan R. Gilmullin and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Rushan R. Gilmullin - initial API and implementation
*******************************************************************************/
package org.eclipse.osbp.vaaclipse.common.ecview.api;
import java.util.Map;
/**
* Instances of this service need to be created in a Vaaclipse UI scoped manner.
* Every vaadin.UI will get its own instance.<br>
* So session and UI based information like locale, userName,... are available.
*
* @NoImplement by clients
*/
public interface IECViewSessionHelper {
/**
* Creates the basic properties required to setup a proper IViewContext in
* ECView.
*
* @return
*/
public abstract Map<String, Object> createBasicProperties();
}