@ProviderType @Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface LayoutSetBranchLocalService extends BaseLocalService, PersistedModelLocalService
LayoutSetBranchLocalServiceUtil| Modifier and Type | Method and Description |
|---|---|
LayoutSetBranch |
addLayoutSetBranch(LayoutSetBranch layoutSetBranch)
Adds the layout set branch to the database.
|
LayoutSetBranch |
addLayoutSetBranch(long userId,
long groupId,
boolean privateLayout,
String name,
String description,
boolean master,
long copyLayoutSetBranchId,
ServiceContext serviceContext) |
LayoutSetBranch |
createLayoutSetBranch(long layoutSetBranchId)
Creates a new layout set branch with the primary key.
|
PersistedModel |
createPersistedModel(Serializable primaryKeyObj) |
LayoutSetBranch |
deleteLayoutSetBranch(LayoutSetBranch layoutSetBranch)
Deletes the layout set branch from the database.
|
LayoutSetBranch |
deleteLayoutSetBranch(LayoutSetBranch layoutSetBranch,
boolean includeMaster) |
LayoutSetBranch |
deleteLayoutSetBranch(long layoutSetBranchId)
Deletes the layout set branch with the primary key from the database.
|
LayoutSetBranch |
deleteLayoutSetBranch(long currentLayoutPlid,
LayoutSetBranch layoutSetBranch,
boolean includeMaster) |
LayoutSetBranch |
deleteLayoutSetBranch(long currentLayoutPlid,
long layoutSetBranchId) |
void |
deleteLayoutSetBranches(long groupId,
boolean privateLayout) |
void |
deleteLayoutSetBranches(long groupId,
boolean privateLayout,
boolean includeMaster) |
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
<T> T |
dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
int |
dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
DynamicQuery |
dynamicQuery() |
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
LayoutSetBranch |
fetchLayoutSetBranch(long layoutSetBranchId) |
LayoutSetBranch |
fetchLayoutSetBranch(long groupId,
boolean privateLayout,
String name) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
LayoutSetBranch |
getLayoutSetBranch(long layoutSetBranchId)
Returns the layout set branch with the primary key.
|
LayoutSetBranch |
getLayoutSetBranch(long groupId,
boolean privateLayout,
String name) |
List<LayoutSetBranch> |
getLayoutSetBranches(long groupId,
boolean privateLayout) |
List<LayoutSetBranch> |
getLayoutSetBranchs(int start,
int end)
Returns a range of all the layout set branches.
|
int |
getLayoutSetBranchsCount()
Returns the number of layout set branches.
|
LayoutSetBranch |
getMasterLayoutSetBranch(long groupId,
boolean privateLayout) |
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj) |
LayoutSetBranch |
getUserLayoutSetBranch(long userId,
long groupId,
boolean privateLayout,
long layoutSetId,
long layoutSetBranchId) |
LayoutSetBranch |
mergeLayoutSetBranch(long layoutSetBranchId,
long mergeLayoutSetBranchId,
ServiceContext serviceContext) |
LayoutSetBranch |
updateLayoutSetBranch(LayoutSetBranch layoutSetBranch)
Updates the layout set branch in the database or adds it if it does not yet exist.
|
LayoutSetBranch |
updateLayoutSetBranch(long layoutSetBranchId,
String name,
String description,
ServiceContext serviceContext) |
getBasePersistence@Indexable(type=REINDEX) LayoutSetBranch addLayoutSetBranch(LayoutSetBranch layoutSetBranch)
Important: Inspect LayoutSetBranchLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
layoutSetBranch - the layout set branchLayoutSetBranch addLayoutSetBranch(long userId, long groupId, boolean privateLayout, String name, String description, boolean master, long copyLayoutSetBranchId, ServiceContext serviceContext) throws PortalException
PortalException@Transactional(enabled=false) LayoutSetBranch createLayoutSetBranch(long layoutSetBranchId)
layoutSetBranchId - the primary key for the new layout set branchPersistedModel createPersistedModel(Serializable primaryKeyObj) throws PortalException
createPersistedModel in interface PersistedModelLocalServicePortalException@Indexable(type=DELETE) LayoutSetBranch deleteLayoutSetBranch(LayoutSetBranch layoutSetBranch) throws PortalException
Important: Inspect LayoutSetBranchLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
layoutSetBranch - the layout set branchPortalExceptionLayoutSetBranch deleteLayoutSetBranch(LayoutSetBranch layoutSetBranch, boolean includeMaster) throws PortalException
PortalException@Indexable(type=DELETE) LayoutSetBranch deleteLayoutSetBranch(long layoutSetBranchId) throws PortalException
Important: Inspect LayoutSetBranchLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
layoutSetBranchId - the primary key of the layout set branchPortalException - if a layout set branch with the primary key could not be foundLayoutSetBranch deleteLayoutSetBranch(long currentLayoutPlid, LayoutSetBranch layoutSetBranch, boolean includeMaster) throws PortalException
PortalExceptionLayoutSetBranch deleteLayoutSetBranch(long currentLayoutPlid, long layoutSetBranchId) throws PortalException
PortalExceptionvoid deleteLayoutSetBranches(long groupId,
boolean privateLayout)
throws PortalException
PortalExceptionvoid deleteLayoutSetBranches(long groupId,
boolean privateLayout,
boolean includeMaster)
throws PortalException
PortalExceptionPersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface PersistedModelLocalServicePortalException@Transactional(propagation=SUPPORTS, readOnly=true) <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQuery in interface PersistedModelLocalService@Transactional(propagation=SUPPORTS, readOnly=true) int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQueryCount in interface PersistedModelLocalService@Transactional(propagation=SUPPORTS, readOnly=true) DynamicQuery dynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery - the dynamic query@Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.LayoutSetBranchModelImpl.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.LayoutSetBranchModelImpl.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)@Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQuery - the dynamic query@Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQuery - the dynamic queryprojection - the projection to apply to the query@Transactional(propagation=SUPPORTS, readOnly=true) LayoutSetBranch fetchLayoutSetBranch(long layoutSetBranchId)
@Transactional(propagation=SUPPORTS, readOnly=true) LayoutSetBranch fetchLayoutSetBranch(long groupId, boolean privateLayout, String name)
@Transactional(propagation=SUPPORTS, readOnly=true) ActionableDynamicQuery getActionableDynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) LayoutSetBranch getLayoutSetBranch(long layoutSetBranchId) throws PortalException
layoutSetBranchId - the primary key of the layout set branchPortalException - if a layout set branch with the primary key could not be found@Transactional(propagation=SUPPORTS, readOnly=true) LayoutSetBranch getLayoutSetBranch(long groupId, boolean privateLayout, String name) throws PortalException
PortalException@Transactional(propagation=SUPPORTS, readOnly=true) List<LayoutSetBranch> getLayoutSetBranches(long groupId, boolean privateLayout)
@Transactional(propagation=SUPPORTS, readOnly=true) List<LayoutSetBranch> getLayoutSetBranchs(int start, int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.LayoutSetBranchModelImpl.
start - the lower bound of the range of layout set branchesend - the upper bound of the range of layout set branches (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) int getLayoutSetBranchsCount()
@Transactional(propagation=SUPPORTS, readOnly=true) LayoutSetBranch getMasterLayoutSetBranch(long groupId, boolean privateLayout) throws PortalException
PortalExceptionString getOSGiServiceIdentifier()
@Transactional(propagation=SUPPORTS, readOnly=true) PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface PersistedModelLocalServicePortalException@Transactional(propagation=SUPPORTS, readOnly=true) LayoutSetBranch getUserLayoutSetBranch(long userId, long groupId, boolean privateLayout, long layoutSetId, long layoutSetBranchId) throws PortalException
PortalExceptionLayoutSetBranch mergeLayoutSetBranch(long layoutSetBranchId, long mergeLayoutSetBranchId, ServiceContext serviceContext) throws PortalException
PortalException@Indexable(type=REINDEX) LayoutSetBranch updateLayoutSetBranch(LayoutSetBranch layoutSetBranch)
Important: Inspect LayoutSetBranchLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
layoutSetBranch - the layout set branchLayoutSetBranch updateLayoutSetBranch(long layoutSetBranchId, String name, String description, ServiceContext serviceContext) throws PortalException
PortalException