Liferay 7.0-ce-b4

com.liferay.portal.service
Interface LayoutSetPrototypeService

All Superinterfaces:
BaseService
All Known Implementing Classes:
LayoutSetPrototypeServiceWrapper

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

Provides the remote service interface for LayoutSetPrototype. 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, com.liferay.portal.service.impl.LayoutSetPrototypeServiceImpl

Method Summary
 LayoutSetPrototype addLayoutSetPrototype(Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, boolean active, boolean layoutsUpdateable, ServiceContext serviceContext)
           
 LayoutSetPrototype addLayoutSetPrototype(Map<Locale,String> nameMap, String description, boolean active, boolean layoutsUpdateable, ServiceContext serviceContext)
          Deprecated. As of 7.0.0, replaced by addLayoutSetPrototype(Map, Map, boolean, boolean, ServiceContext)
 void deleteLayoutSetPrototype(long layoutSetPrototypeId)
           
 LayoutSetPrototype fetchLayoutSetPrototype(long layoutSetPrototypeId)
           
 LayoutSetPrototype getLayoutSetPrototype(long layoutSetPrototypeId)
           
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 List<LayoutSetPrototype> search(long companyId, Boolean active, OrderByComparator<LayoutSetPrototype> obc)
           
 LayoutSetPrototype updateLayoutSetPrototype(long layoutSetPrototypeId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, boolean active, boolean layoutsUpdateable, ServiceContext serviceContext)
           
 LayoutSetPrototype updateLayoutSetPrototype(long layoutSetPrototypeId, Map<Locale,String> nameMap, String description, boolean active, boolean layoutsUpdateable, ServiceContext serviceContext)
          Deprecated. As of 7.0.0, replaced by updateLayoutSetPrototype(long, Map, Map, boolean, boolean, ServiceContext)
 LayoutSetPrototype updateLayoutSetPrototype(long layoutSetPrototypeId, String settings)
           
 

Method Detail

addLayoutSetPrototype

@Deprecated
LayoutSetPrototype addLayoutSetPrototype(Map<Locale,String> nameMap,
                                                    String description,
                                                    boolean active,
                                                    boolean layoutsUpdateable,
                                                    ServiceContext serviceContext)
                                         throws PortalException
Deprecated. As of 7.0.0, replaced by addLayoutSetPrototype(Map, Map, boolean, boolean, ServiceContext)

Throws:
PortalException

addLayoutSetPrototype

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

deleteLayoutSetPrototype

void deleteLayoutSetPrototype(long layoutSetPrototypeId)
                              throws PortalException
Throws:
PortalException

fetchLayoutSetPrototype

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

getLayoutSetPrototype

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

getOSGiServiceIdentifier

String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Returns:
the OSGi service identifier

search

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

updateLayoutSetPrototype

@Deprecated
LayoutSetPrototype updateLayoutSetPrototype(long layoutSetPrototypeId,
                                                       Map<Locale,String> nameMap,
                                                       String description,
                                                       boolean active,
                                                       boolean layoutsUpdateable,
                                                       ServiceContext serviceContext)
                                            throws PortalException
Deprecated. As of 7.0.0, replaced by updateLayoutSetPrototype(long, Map, Map, boolean, boolean, ServiceContext)

Throws:
PortalException

updateLayoutSetPrototype

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

updateLayoutSetPrototype

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

Liferay 7.0-ce-b4