Liferay 7.0-ce-b4

com.liferay.portal.service
Interface LayoutBranchService

All Superinterfaces:
BaseService
All Known Implementing Classes:
LayoutBranchServiceBaseImpl, LayoutBranchServiceImpl, LayoutBranchServiceWrapper

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

Provides the remote service interface for LayoutBranch. 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:
LayoutBranchServiceUtil, LayoutBranchServiceBaseImpl, LayoutBranchServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 LayoutBranch addLayoutBranch(long layoutRevisionId, String name, String description, boolean master, ServiceContext serviceContext)
           
 void deleteLayoutBranch(long layoutBranchId)
           
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 LayoutBranch updateLayoutBranch(long layoutBranchId, String name, String description, ServiceContext serviceContext)
           
 

Method Detail

addLayoutBranch

LayoutBranch addLayoutBranch(long layoutRevisionId,
                             String name,
                             String description,
                             boolean master,
                             ServiceContext serviceContext)
                             throws PortalException
Throws:
PortalException

deleteLayoutBranch

void deleteLayoutBranch(long layoutBranchId)
                        throws PortalException
Throws:
PortalException

getOSGiServiceIdentifier

String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Returns:
the OSGi service identifier

updateLayoutBranch

LayoutBranch updateLayoutBranch(long layoutBranchId,
                                String name,
                                String description,
                                ServiceContext serviceContext)
                                throws PortalException
Throws:
PortalException

Liferay 7.0-ce-b4