All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.portal.kernel.util.PrefsPropsUtil Maven / Gradle / Ivy

Go to download

Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.

There is a newer version: 7.0.0-nightly
Show newest version
/**
 * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.portal.kernel.util;

import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.security.pacl.permission.PortalRuntimePermission;

import java.util.Properties;

import javax.portlet.PortletPreferences;

/**
 * @author Brian Wing Shun Chan
 */
public class PrefsPropsUtil {

	public static boolean getBoolean(long companyId, String name)
		throws SystemException {

		return getPrefsProps().getBoolean(companyId, name);
	}

	public static boolean getBoolean(
			long companyId, String name, boolean defaultValue)
		throws SystemException {

		return getPrefsProps().getBoolean(companyId, name, defaultValue);
	}

	public static boolean getBoolean(
		PortletPreferences preferences, long companyId, String name) {

		return getPrefsProps().getBoolean(preferences, companyId, name);
	}

	public static boolean getBoolean(
		PortletPreferences preferences, long companyId, String name,
		boolean defaultValue) {

		return getPrefsProps().getBoolean(
			preferences, companyId, name, defaultValue);
	}

	public static boolean getBoolean(String name) throws SystemException {
		return getPrefsProps().getBoolean(name);
	}

	public static boolean getBoolean(String name, boolean defaultValue)
		throws SystemException {

		return getPrefsProps().getBoolean(name, defaultValue);
	}

	public static String getContent(long companyId, String name)
		throws SystemException {

		return getPrefsProps().getContent(companyId, name);
	}

	public static String getContent(
		PortletPreferences preferences, long companyId, String name) {

		return getPrefsProps().getContent(preferences, companyId, name);
	}

	public static String getContent(String name) throws SystemException {
		return getPrefsProps().getContent(name);
	}

	public static double getDouble(long companyId, String name)
		throws SystemException {

		return getPrefsProps().getDouble(companyId, name);
	}

	public static double getDouble(
			long companyId, String name, double defaultValue)
		throws SystemException {

		return getPrefsProps().getDouble(companyId, name, defaultValue);
	}

	public static double getDouble(
		PortletPreferences preferences, long companyId, String name) {

		return getPrefsProps().getDouble(preferences, companyId, name);
	}

	public static double getDouble(
		PortletPreferences preferences, long companyId, String name,
		double defaultValue) {

		return getPrefsProps().getDouble(
			preferences, companyId, name, defaultValue);
	}

	public static double getDouble(String name) throws SystemException {
		return getPrefsProps().getDouble(name);
	}

	public static double getDouble(String name, double defaultValue)
		throws SystemException {

		return getPrefsProps().getDouble(name, defaultValue);
	}

	public static int getInteger(long companyId, String name)
		throws SystemException {

		return getPrefsProps().getInteger(companyId, name);
	}

	public static int getInteger(long companyId, String name, int defaultValue)
		throws SystemException {

		return getPrefsProps().getInteger(companyId, name, defaultValue);
	}

	public static int getInteger(
		PortletPreferences preferences, long companyId, String name) {

		return getPrefsProps().getInteger(preferences, companyId, name);
	}

	public static int getInteger(
		PortletPreferences preferences, long companyId, String name,
		int defaultValue) {

		return getPrefsProps().getInteger(
			preferences, companyId, name, defaultValue);
	}

	public static int getInteger(String name) throws SystemException {
		return getPrefsProps().getInteger(name);
	}

	public static int getInteger(String name, int defaultValue)
		throws SystemException {

		return getPrefsProps().getInteger(name, defaultValue);
	}

	public static long getLong(long companyId, String name)
		throws SystemException {

		return getPrefsProps().getLong(companyId, name);
	}

	public static long getLong(long companyId, String name, long defaultValue)
		throws SystemException {

		return getPrefsProps().getLong(companyId, name, defaultValue);
	}

	public static long getLong(
		PortletPreferences preferences, long companyId, String name) {

		return getPrefsProps().getLong(preferences, companyId, name);
	}

	public static long getLong(
		PortletPreferences preferences, long companyId, String name,
		long defaultValue) {

		return getPrefsProps().getLong(
			preferences, companyId, name, defaultValue);
	}

	public static long getLong(String name) throws SystemException {
		return getPrefsProps().getLong(name);
	}

	public static long getLong(String name, long defaultValue)
		throws SystemException {

		return getPrefsProps().getLong(name, defaultValue);
	}

	public static PortletPreferences getPreferences() throws SystemException {
		return getPrefsProps().getPreferences();
	}

	public static PortletPreferences getPreferences(boolean readOnly)
		throws SystemException {

		return getPrefsProps().getPreferences(readOnly);
	}

	public static PortletPreferences getPreferences(long companyId)
		throws SystemException {

		return getPrefsProps().getPreferences(companyId);
	}

	public static PortletPreferences getPreferences(
			long companyId, boolean readOnly)
		throws SystemException {

		return getPrefsProps().getPreferences(companyId, readOnly);
	}

	public static PrefsProps getPrefsProps() {
		PortalRuntimePermission.checkGetBeanProperty(PrefsPropsUtil.class);

		return _prefsProps;
	}

	public static Properties getProperties(
		PortletPreferences preferences, long companyId, String prefix,
		boolean removePrefix) {

		return getPrefsProps().getProperties(
			preferences, companyId, prefix, removePrefix);
	}

	public static Properties getProperties(String prefix, boolean removePrefix)
		throws SystemException {

		return getPrefsProps().getProperties(prefix, removePrefix);
	}

	public static short getShort(long companyId, String name)
		throws SystemException {

		return getPrefsProps().getShort(companyId, name);
	}

	public static short getShort(
			long companyId, String name, short defaultValue)
		throws SystemException {

		return getPrefsProps().getShort(companyId, name, defaultValue);
	}

	public static short getShort(
		PortletPreferences preferences, long companyId, String name) {

		return getPrefsProps().getShort(preferences, companyId, name);
	}

	public static short getShort(
		PortletPreferences preferences, long companyId, String name,
		short defaultValue) {

		return getPrefsProps().getShort(
			preferences, companyId, name, defaultValue);
	}

	public static short getShort(String name) throws SystemException {
		return getPrefsProps().getShort(name);
	}

	public static short getShort(String name, short defaultValue)
		throws SystemException {

		return getPrefsProps().getShort(name, defaultValue);
	}

	public static String getString(long companyId, String name)
		throws SystemException {

		return getPrefsProps().getString(companyId, name);
	}

	public static String getString(
			long companyId, String name, String defaultValue)
		throws SystemException {

		return getPrefsProps().getString(companyId, name, defaultValue);
	}

	public static String getString(
		PortletPreferences preferences, long companyId, String name) {

		return getPrefsProps().getString(preferences, companyId, name);
	}

	public static String getString(
		PortletPreferences preferences, long companyId, String name,
		boolean defaultValue) {

		return getPrefsProps().getString(
			preferences, companyId, name, defaultValue);
	}

	public static String getString(
		PortletPreferences preferences, long companyId, String name,
		double defaultValue) {

		return getPrefsProps().getString(
			preferences, companyId, name, defaultValue);
	}

	public static String getString(
		PortletPreferences preferences, long companyId, String name,
		int defaultValue) {

		return getPrefsProps().getString(
			preferences, companyId, name, defaultValue);
	}

	public static String getString(
		PortletPreferences preferences, long companyId, String name,
		long defaultValue) {

		return getPrefsProps().getString(
			preferences, companyId, name, defaultValue);
	}

	public static String getString(
		PortletPreferences preferences, long companyId, String name,
		short defaultValue) {

		return getPrefsProps().getString(
			preferences, companyId, name, defaultValue);
	}

	public static String getString(
		PortletPreferences preferences, long companyId, String name,
		String defaultValue) {

		return getPrefsProps().getString(
			preferences, companyId, name, defaultValue);
	}

	public static String getString(String name) throws SystemException {
		return getPrefsProps().getString(name);
	}

	public static String getString(String name, String defaultValue)
		throws SystemException {

		return getPrefsProps().getString(name, defaultValue);
	}

	public static String[] getStringArray(
			long companyId, String name, String delimiter)
		throws SystemException {

		return getPrefsProps().getStringArray(companyId, name, delimiter);
	}

	public static String[] getStringArray(
			long companyId, String name, String delimiter,
			String[] defaultValue)
		throws SystemException {

		return getPrefsProps().getStringArray(
			companyId, name, delimiter, defaultValue);
	}

	public static String[] getStringArray(
		PortletPreferences preferences, long companyId, String name,
		String delimiter) {

		return getPrefsProps().getStringArray(
			preferences, companyId, name, delimiter);
	}

	public static String[] getStringArray(
		PortletPreferences preferences, long companyId, String name,
		String delimiter, String[] defaultValue) {

		return getPrefsProps().getStringArray(
			preferences, companyId, name, delimiter, defaultValue);
	}

	public static String[] getStringArray(String name, String delimiter)
		throws SystemException {

		return getPrefsProps().getStringArray(name, delimiter);
	}

	public static String[] getStringArray(
			String name, String delimiter, String[] defaultValue)
		throws SystemException {

		return getPrefsProps().getStringArray(name, delimiter, defaultValue);
	}

	public static String getStringFromNames(long companyId, String... names)
		throws SystemException {

		return getPrefsProps().getStringFromNames(companyId, names);
	}

	public void setPrefsProps(PrefsProps prefsProps) {
		PortalRuntimePermission.checkSetBeanProperty(getClass());

		_prefsProps = prefsProps;
	}

	private static PrefsProps _prefsProps;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy