blob: af04b1a216d439c3b4fb1aa893b4d4e49abc1a6d [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.publicapi.preferences;
import org.osgi.service.prefs.Preferences;
/**
* A service that provides preferences.
*/
public interface IPreferenceProvider {
/**
* Returns the system preferences.
*
* @return
*/
Preferences getSystemPreferences();
/**
* Returns the preferences for the current user.
*
* @return
*/
Preferences getUserPreferences();
/**
* Returns the preferences for the given user.
*
* @return
*/
Preferences getUserPreferences(String userId);
}