Liferay 6.1.10-ee-ga1

com.liferay.portal.service
Interface LayoutSetPrototypeService

All Known Implementing Classes:
LayoutSetPrototypeServiceBaseImpl, LayoutSetPrototypeServiceImpl, LayoutSetPrototypeServiceWrapper

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

The interface for the layout set prototype remote service.

This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
LayoutSetPrototypeServiceUtil, LayoutSetPrototypeServiceBaseImpl, LayoutSetPrototypeServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 LayoutSetPrototype addLayoutSetPrototype(Map<Locale,String> nameMap, String description, boolean active, boolean layoutsUpdateable, ServiceContext serviceContext)
           
 void deleteLayoutSetPrototype(long layoutSetPrototypeId)
           
 LayoutSetPrototype getLayoutSetPrototype(long layoutSetPrototypeId)
           
 List<LayoutSetPrototype> search(long companyId, Boolean active, OrderByComparator obc)
           
 LayoutSetPrototype updateLayoutSetPrototype(long layoutSetPrototypeId, Map<Locale,String> nameMap, String description, boolean active, boolean layoutsUpdateable, ServiceContext serviceContext)
           
 LayoutSetPrototype updateLayoutSetPrototype(long layoutSetPrototypeId, String settings)
           
 

Method Detail

addLayoutSetPrototype

LayoutSetPrototype addLayoutSetPrototype(Map<Locale,String> nameMap,
                                         String description,
                                         boolean active,
                                         boolean layoutsUpdateable,
                                         ServiceContext serviceContext)
                                         throws PortalException,
                                                SystemException
Throws:
PortalException
SystemException

deleteLayoutSetPrototype

void deleteLayoutSetPrototype(long layoutSetPrototypeId)
                              throws PortalException,
                                     SystemException
Throws:
PortalException
SystemException

getLayoutSetPrototype

@Transactional(propagation=SUPPORTS,
               readOnly=true)
LayoutSetPrototype getLayoutSetPrototype(long layoutSetPrototypeId)
                                         throws PortalException,
                                                SystemException
Throws:
PortalException
SystemException

search

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<LayoutSetPrototype> search(long companyId,
                                                                         Boolean active,
                                                                         OrderByComparator obc)
                                throws PortalException,
                                       SystemException
Throws:
PortalException
SystemException

updateLayoutSetPrototype

LayoutSetPrototype updateLayoutSetPrototype(long layoutSetPrototypeId,
                                            Map<Locale,String> nameMap,
                                            String description,
                                            boolean active,
                                            boolean layoutsUpdateable,
                                            ServiceContext serviceContext)
                                            throws PortalException,
                                                   SystemException
Throws:
PortalException
SystemException

updateLayoutSetPrototype

LayoutSetPrototype updateLayoutSetPrototype(long layoutSetPrototypeId,
                                            String settings)
                                            throws PortalException,
                                                   SystemException
Throws:
PortalException
SystemException

Liferay 6.1.10-ee-ga1