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.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionaddLayoutSetBranch
(long groupId, boolean privateLayout, String name, String description, boolean master, long copyLayoutSetBranchId, ServiceContext serviceContext) void
deleteLayoutSetBranch
(long layoutSetBranchId) void
deleteLayoutSetBranch
(long currentLayoutPlid, long layoutSetBranchId) getLayoutSetBranches
(long groupId, boolean privateLayout) Returns the OSGi service identifier.mergeLayoutSetBranch
(long layoutSetBranchId, long mergeLayoutSetBranchId, ServiceContext serviceContext) updateLayoutSetBranch
(long groupId, long layoutSetBranchId, String name, String description, ServiceContext serviceContext)
-
Method Details
-
addLayoutSetBranch
LayoutSetBranch addLayoutSetBranch(long groupId, boolean privateLayout, String name, String description, boolean master, long copyLayoutSetBranchId, ServiceContext serviceContext) throws PortalException - Throws:
PortalException
-
deleteLayoutSetBranch
- Throws:
PortalException
-
deleteLayoutSetBranch
- 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
-