Liferay 7.0-ce-b4

com.liferay.portal.service
Interface LayoutTemplateLocalService

All Superinterfaces:
BaseLocalService
All Known Implementing Classes:
LayoutTemplateLocalServiceBaseImpl, LayoutTemplateLocalServiceImpl, 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, LayoutTemplateLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 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 getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 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 uninstallLayoutTemplate(String layoutTemplateId, boolean standard)
           
 void uninstallLayoutTemplates(String themeId)
           
 

Method Detail

getContent

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

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)

getOSGiServiceIdentifier

String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Returns:
the OSGi service identifier

getWapContent

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

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 7.0-ce-b4