Liferay 6.0.5

com.liferay.portal.service
Interface LayoutTemplateLocalService

All Known Implementing Classes:
LayoutTemplateLocalServiceBaseImpl, LayoutTemplateLocalServiceImpl, LayoutTemplateLocalServiceWrapper

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

The interface for the layout template local service.

Never modify or reference this interface directly. Always use LayoutTemplateLocalServiceUtil to access the layout template local service. Add custom service methods to LayoutTemplateLocalServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

This is a local service. 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 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 getWapContent(String layoutTemplateId, boolean standard, String themeId)
           
 List<ObjectValuePair<String,Boolean>> init(javax.servlet.ServletContext servletContext, String[] xmls, PluginPackage pluginPackage)
           
 List<ObjectValuePair<String,Boolean>> init(String servletContextName, javax.servlet.ServletContext servletContext, String[] xmls, PluginPackage pluginPackage)
           
 void readLayoutTemplate(String servletContextName, javax.servlet.ServletContext servletContext, Set<ObjectValuePair<String,Boolean>> layoutTemplateIds, Element el, 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)
                  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<ObjectValuePair<String,Boolean>> init(javax.servlet.ServletContext servletContext,
                                           String[] xmls,
                                           PluginPackage pluginPackage)

init

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

readLayoutTemplate

void readLayoutTemplate(String servletContextName,
                        javax.servlet.ServletContext servletContext,
                        Set<ObjectValuePair<String,Boolean>> layoutTemplateIds,
                        Element el,
                        boolean standard,
                        String themeId,
                        PluginPackage pluginPackage)

uninstallLayoutTemplate

void uninstallLayoutTemplate(String layoutTemplateId,
                             boolean standard)

uninstallLayoutTemplates

void uninstallLayoutTemplates(String themeId)

Liferay 6.0.5