com.liferay.portal.service.ThemeLocalServiceUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of portal-service Show documentation
Show all versions of portal-service Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* 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.service;
import aQute.bnd.annotation.ProviderType;
import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
import com.liferay.portal.kernel.util.ReferenceRegistry;
/**
* Provides the local service utility for Theme. This utility wraps
* {@link com.liferay.portal.service.impl.ThemeLocalServiceImpl} and is the
* primary access point for service operations in application layer code running
* on the local server. Methods of this service will not have security checks
* based on the propagated JAAS credentials because this service can only be
* accessed from within the same VM.
*
* @author Brian Wing Shun Chan
* @see ThemeLocalService
* @see com.liferay.portal.service.base.ThemeLocalServiceBaseImpl
* @see com.liferay.portal.service.impl.ThemeLocalServiceImpl
* @generated
*/
@ProviderType
public class ThemeLocalServiceUtil {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify this class directly. Add custom service methods to {@link com.liferay.portal.service.impl.ThemeLocalServiceImpl} and rerun ServiceBuilder to regenerate this class.
*/
/**
* Returns the Spring bean ID for this bean.
*
* @return the Spring bean ID for this bean
*/
public static java.lang.String getBeanIdentifier() {
return getService().getBeanIdentifier();
}
/**
* Sets the Spring bean ID for this bean.
*
* @param beanIdentifier the Spring bean ID for this bean
*/
public static void setBeanIdentifier(java.lang.String beanIdentifier) {
getService().setBeanIdentifier(beanIdentifier);
}
public static com.liferay.portal.model.ColorScheme fetchColorScheme(
long companyId, java.lang.String themeId, java.lang.String colorSchemeId) {
return getService().fetchColorScheme(companyId, themeId, colorSchemeId);
}
public static com.liferay.portal.model.Theme fetchTheme(long companyId,
java.lang.String themeId) {
return getService().fetchTheme(companyId, themeId);
}
public static com.liferay.portal.model.ColorScheme getColorScheme(
long companyId, java.lang.String themeId,
java.lang.String colorSchemeId, boolean wapTheme)
throws com.liferay.portal.kernel.exception.SystemException {
return getService()
.getColorScheme(companyId, themeId, colorSchemeId, wapTheme);
}
public static com.liferay.portal.model.Theme getTheme(long companyId,
java.lang.String themeId, boolean wapTheme)
throws com.liferay.portal.kernel.exception.SystemException {
return getService().getTheme(companyId, themeId, wapTheme);
}
public static java.util.List getThemes(
long companyId) {
return getService().getThemes(companyId);
}
public static java.util.List getThemes(
long companyId, long groupId, long userId, boolean wapTheme)
throws com.liferay.portal.kernel.exception.SystemException {
return getService().getThemes(companyId, groupId, userId, wapTheme);
}
public static java.util.List getWARThemes() {
return getService().getWARThemes();
}
public static java.util.List init(
javax.servlet.ServletContext servletContext,
java.lang.String themesPath, boolean loadFromServletContext,
java.lang.String[] xmls,
com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
return getService()
.init(servletContext, themesPath, loadFromServletContext,
xmls, pluginPackage);
}
public static java.util.List init(
java.lang.String servletContextName,
javax.servlet.ServletContext servletContext,
java.lang.String themesPath, boolean loadFromServletContext,
java.lang.String[] xmls,
com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
return getService()
.init(servletContextName, servletContext, themesPath,
loadFromServletContext, xmls, pluginPackage);
}
public static void uninstallThemes(
java.util.List themes) {
getService().uninstallThemes(themes);
}
public static ThemeLocalService getService() {
if (_service == null) {
_service = (ThemeLocalService)PortalBeanLocatorUtil.locate(ThemeLocalService.class.getName());
ReferenceRegistry.registerReference(ThemeLocalServiceUtil.class,
"_service");
}
return _service;
}
/**
* @deprecated As of 6.2.0
*/
public void setService(ThemeLocalService service) {
}
private static ThemeLocalService _service;
}