blob: 0a256e1a6e735c7559f99b4908664c96c75946d3 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.runtime.common.user;
import org.osgi.service.prefs.Preferences;
// TODO: Auto-generated Javadoc
/**
* Provides information about the current user.
*/
public interface IUserInfo {
/**
* Returns the id of the user.
*
* @return the id
*/
String getId();
// /**
// * Returns the location where all user specific settings are stored. If no
// * location is available, empty string will be returned.
// *
// * @return
// */
// String getLocation();
/**
* Returns the user preferences. If no user preferences are available then
* <code>null</code> is returned.
*
* @param qualifier
* The qualifier to access the preference node.
*
* @return The preferences for the given qualifier or <code>null</code> if
* no proper preferences could be found.
*/
Preferences getPreferences(String qualifier);
}