Liferay 6.2-ce-ga5

com.liferay.portal.service
Interface LayoutTemplateLocalService

All Superinterfaces:
BaseLocalService
All Known Implementing Classes:
LayoutTemplateLocalServiceWrapper

@ProviderType
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface LayoutTemplateLocalService
extends BaseLocalService

Provides the local service interface for LayoutTemplate. 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.

See Also:
LayoutTemplateLocalServiceUtil, LayoutTemplateLocalServiceBaseImpl, com.liferay.portal.service.impl.LayoutTemplateLocalServiceImpl

Method Summary
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 String getContent(String layoutTemplateId, boolean standard, String themeId)
           
 LayoutTemplate getLayoutTemplate(String layoutTemplateId, boolean standard, String themeId)
           
 List<LayoutTemplate> getLayoutTemplates()
           
 List<LayoutTemplate> getLayoutTemplates(String themeId)
           
 String getWapContent(String layoutTemplateId, boolean standard, String themeId)
           
 List<LayoutTemplate> init(javax.servlet.ServletContext servletContext, String[] xmls, PluginPackage pluginPackage)
           
 List<LayoutTemplate> init(String servletContextName, javax.servlet.ServletContext servletContext, String[] xmls, PluginPackage pluginPackage)
           
 void readLayoutTemplate(String servletContextName, javax.servlet.ServletContext servletContext, Set<LayoutTemplate> layoutTemplates, Element element, boolean standard, String themeId, PluginPackage pluginPackage)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void uninstallLayoutTemplate(String layoutTemplateId, boolean standard)
           
 void uninstallLayoutTemplates(String themeId)
           
 

Method Detail

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

getContent

@Transactional(propagation=SUPPORTS,
               readOnly=true)
String getContent(String layoutTemplateId,
                                                           boolean standard,
                                                           String themeId)
                  throws SystemException
Throws:
SystemException

getLayoutTemplate

@Transactional(propagation=SUPPORTS,
               readOnly=true)
LayoutTemplate getLayoutTemplate(String layoutTemplateId,
                                                                          boolean standard,
                                                                          String themeId)

getLayoutTemplates

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<LayoutTemplate> getLayoutTemplates()

getLayoutTemplates

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<LayoutTemplate> getLayoutTemplates(String themeId)

getWapContent

@Transactional(propagation=SUPPORTS,
               readOnly=true)
String getWapContent(String layoutTemplateId,
                                                              boolean standard,
                                                              String themeId)
                     throws SystemException
Throws:
SystemException

init

List<LayoutTemplate> init(javax.servlet.ServletContext servletContext,
                          String[] xmls,
                          PluginPackage pluginPackage)

init

List<LayoutTemplate> init(String servletContextName,
                          javax.servlet.ServletContext servletContext,
                          String[] xmls,
                          PluginPackage pluginPackage)

readLayoutTemplate

void readLayoutTemplate(String servletContextName,
                        javax.servlet.ServletContext servletContext,
                        Set<LayoutTemplate> layoutTemplates,
                        Element element,
                        boolean standard,
                        String themeId,
                        PluginPackage pluginPackage)

uninstallLayoutTemplate

void uninstallLayoutTemplate(String layoutTemplateId,
                             boolean standard)

uninstallLayoutTemplates

void uninstallLayoutTemplates(String themeId)

Liferay 6.2-ce-ga5