Liferay 7.0-ce-b4

com.liferay.portal.service
Interface LayoutSetBranchService

All Superinterfaces:
BaseService
All Known Implementing Classes:
LayoutSetBranchServiceWrapper

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

Provides the remote service interface for LayoutSetBranch. 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:
LayoutSetBranchServiceUtil, LayoutSetBranchServiceBaseImpl, com.liferay.portal.service.impl.LayoutSetBranchServiceImpl

Method Summary
 LayoutSetBranch addLayoutSetBranch(long groupId, boolean privateLayout, String name, String description, boolean master, long copyLayoutSetBranchId, ServiceContext serviceContext)
           
 void deleteLayoutSetBranch(long layoutSetBranchId)
           
 List<LayoutSetBranch> getLayoutSetBranches(long groupId, boolean privateLayout)
           
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 LayoutSetBranch mergeLayoutSetBranch(long layoutSetBranchId, long mergeLayoutSetBranchId, ServiceContext serviceContext)
           
 LayoutSetBranch updateLayoutSetBranch(long groupId, long layoutSetBranchId, String name, String description, ServiceContext serviceContext)
           
 

Method Detail

addLayoutSetBranch

LayoutSetBranch addLayoutSetBranch(long groupId,
                                   boolean privateLayout,
                                   String name,
                                   String description,
                                   boolean master,
                                   long copyLayoutSetBranchId,
                                   ServiceContext serviceContext)
                                   throws PortalException
Throws:
PortalException

deleteLayoutSetBranch

void deleteLayoutSetBranch(long layoutSetBranchId)
                           throws PortalException
Throws:
PortalException

getLayoutSetBranches

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<LayoutSetBranch> getLayoutSetBranches(long groupId,
                                                                                    boolean privateLayout)

getOSGiServiceIdentifier

String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Returns:
the OSGi service identifier

mergeLayoutSetBranch

LayoutSetBranch mergeLayoutSetBranch(long layoutSetBranchId,
                                     long mergeLayoutSetBranchId,
                                     ServiceContext serviceContext)
                                     throws PortalException
Throws:
PortalException

updateLayoutSetBranch

LayoutSetBranch updateLayoutSetBranch(long groupId,
                                      long layoutSetBranchId,
                                      String name,
                                      String description,
                                      ServiceContext serviceContext)
                                      throws PortalException
Throws:
PortalException

Liferay 7.0-ce-b4