@ProviderType @Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface SiteNavigationMenuItemLocalService extends BaseLocalService, PersistedModelLocalService
SiteNavigationMenuItemLocalServiceUtil| Modifier and Type | Method and Description |
|---|---|
SiteNavigationMenuItem |
addSiteNavigationMenuItem(long userId,
long groupId,
long siteNavigationMenuId,
long parentSiteNavigationMenuItemId,
java.lang.String type,
int order,
java.lang.String typeSettings,
ServiceContext serviceContext) |
SiteNavigationMenuItem |
addSiteNavigationMenuItem(long userId,
long groupId,
long siteNavigationMenuId,
long parentSiteNavigationMenuItemId,
java.lang.String type,
java.lang.String typeSettings,
ServiceContext serviceContext) |
SiteNavigationMenuItem |
addSiteNavigationMenuItem(SiteNavigationMenuItem siteNavigationMenuItem)
Adds the site navigation menu item to the database.
|
PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
SiteNavigationMenuItem |
createSiteNavigationMenuItem(long siteNavigationMenuItemId)
Creates a new site navigation menu item with the primary key.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
SiteNavigationMenuItem |
deleteSiteNavigationMenuItem(long siteNavigationMenuItemId)
Deletes the site navigation menu item with the primary key from the database.
|
SiteNavigationMenuItem |
deleteSiteNavigationMenuItem(SiteNavigationMenuItem siteNavigationMenuItem)
Deletes the site navigation menu item from the database.
|
void |
deleteSiteNavigationMenuItems(long siteNavigationMenuId) |
void |
deleteSiteNavigationMenuItemsByGroupId(long groupId) |
<T> T |
dslQuery(DSLQuery dslQuery) |
DynamicQuery |
dynamicQuery() |
<T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> java.util.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> java.util.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.
|
SiteNavigationMenuItem |
fetchSiteNavigationMenuItem(long siteNavigationMenuItemId) |
SiteNavigationMenuItem |
fetchSiteNavigationMenuItemByUuidAndGroupId(java.lang.String uuid,
long groupId)
Returns the site navigation menu item matching the UUID and group.
|
ActionableDynamicQuery |
getActionableDynamicQuery() |
ExportActionableDynamicQuery |
getExportActionableDynamicQuery(PortletDataContext portletDataContext) |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
SiteNavigationMenuItem |
getSiteNavigationMenuItem(long siteNavigationMenuItemId)
Returns the site navigation menu item with the primary key.
|
SiteNavigationMenuItem |
getSiteNavigationMenuItemByUuidAndGroupId(java.lang.String uuid,
long groupId)
Returns the site navigation menu item matching the UUID and group.
|
java.util.List<SiteNavigationMenuItem> |
getSiteNavigationMenuItems(int start,
int end)
Returns a range of all the site navigation menu items.
|
java.util.List<SiteNavigationMenuItem> |
getSiteNavigationMenuItems(long siteNavigationMenuId) |
java.util.List<SiteNavigationMenuItem> |
getSiteNavigationMenuItems(long siteNavigationMenuId,
long parentSiteNavigationMenuItemId) |
java.util.List<SiteNavigationMenuItem> |
getSiteNavigationMenuItemsByUuidAndCompanyId(java.lang.String uuid,
long companyId)
Returns all the site navigation menu items matching the UUID and company.
|
java.util.List<SiteNavigationMenuItem> |
getSiteNavigationMenuItemsByUuidAndCompanyId(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator<SiteNavigationMenuItem> orderByComparator)
Returns a range of site navigation menu items matching the UUID and company.
|
int |
getSiteNavigationMenuItemsCount()
Returns the number of site navigation menu items.
|
int |
getSiteNavigationMenuItemsCount(long siteNavigationMenuId) |
SiteNavigationMenuItem |
updateSiteNavigationMenuItem(long siteNavigationMenuItemId,
long parentSiteNavigationMenuItemId,
int order) |
SiteNavigationMenuItem |
updateSiteNavigationMenuItem(long userId,
long siteNavigationMenuItemId,
long groupId,
long siteNavigationMenuId,
long parentSiteNavigationMenuItemId,
java.lang.String type,
int order,
java.lang.String typeSettings) |
SiteNavigationMenuItem |
updateSiteNavigationMenuItem(long userId,
long siteNavigationMenuItemId,
java.lang.String typeSettings,
ServiceContext serviceContext) |
SiteNavigationMenuItem |
updateSiteNavigationMenuItem(SiteNavigationMenuItem siteNavigationMenuItem)
Updates the site navigation menu item in the database or adds it if it does not yet exist.
|
getBasePersistenceSiteNavigationMenuItem addSiteNavigationMenuItem(long userId, long groupId, long siteNavigationMenuId, long parentSiteNavigationMenuItemId, java.lang.String type, int order, java.lang.String typeSettings, ServiceContext serviceContext) throws PortalException
PortalExceptionSiteNavigationMenuItem addSiteNavigationMenuItem(long userId, long groupId, long siteNavigationMenuId, long parentSiteNavigationMenuItemId, java.lang.String type, java.lang.String typeSettings, ServiceContext serviceContext) throws PortalException
PortalException@Indexable(type=REINDEX) SiteNavigationMenuItem addSiteNavigationMenuItem(SiteNavigationMenuItem siteNavigationMenuItem)
siteNavigationMenuItem - the site navigation menu itemPersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
createPersistedModel in interface PersistedModelLocalServicePortalException@Transactional(enabled=false) SiteNavigationMenuItem createSiteNavigationMenuItem(long siteNavigationMenuItemId)
siteNavigationMenuItemId - the primary key for the new site navigation menu itemPersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface PersistedModelLocalServicePortalException@Indexable(type=DELETE) SiteNavigationMenuItem deleteSiteNavigationMenuItem(long siteNavigationMenuItemId) throws PortalException
siteNavigationMenuItemId - the primary key of the site navigation menu itemPortalException - if a site navigation menu item with the primary key could not be found@Indexable(type=DELETE) @SystemEvent(type=1) SiteNavigationMenuItem deleteSiteNavigationMenuItem(SiteNavigationMenuItem siteNavigationMenuItem)
siteNavigationMenuItem - the site navigation menu itemvoid deleteSiteNavigationMenuItems(long siteNavigationMenuId)
void deleteSiteNavigationMenuItemsByGroupId(long groupId)
@Transactional(propagation=SUPPORTS, readOnly=true) <T> T dslQuery(DSLQuery dslQuery)
@Transactional(propagation=SUPPORTS, readOnly=true) DynamicQuery dynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery - the dynamic query@Transactional(propagation=SUPPORTS, readOnly=true) <T> java.util.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.site.navigation.model.impl.SiteNavigationMenuItemModelImpl.
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> java.util.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.site.navigation.model.impl.SiteNavigationMenuItemModelImpl.
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) SiteNavigationMenuItem fetchSiteNavigationMenuItem(long siteNavigationMenuItemId)
@Transactional(propagation=SUPPORTS, readOnly=true) SiteNavigationMenuItem fetchSiteNavigationMenuItemByUuidAndGroupId(java.lang.String uuid, long groupId)
uuid - the site navigation menu item's UUIDgroupId - the primary key of the groupnull if a matching site navigation menu item could not be found@Transactional(propagation=SUPPORTS, readOnly=true) ActionableDynamicQuery getActionableDynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) ExportActionableDynamicQuery getExportActionableDynamicQuery(PortletDataContext portletDataContext)
@Transactional(propagation=SUPPORTS, readOnly=true) IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
java.lang.String getOSGiServiceIdentifier()
@Transactional(propagation=SUPPORTS, readOnly=true) PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface PersistedModelLocalServicePortalException@Transactional(propagation=SUPPORTS, readOnly=true) SiteNavigationMenuItem getSiteNavigationMenuItem(long siteNavigationMenuItemId) throws PortalException
siteNavigationMenuItemId - the primary key of the site navigation menu itemPortalException - if a site navigation menu item with the primary key could not be found@Transactional(propagation=SUPPORTS, readOnly=true) SiteNavigationMenuItem getSiteNavigationMenuItemByUuidAndGroupId(java.lang.String uuid, long groupId) throws PortalException
uuid - the site navigation menu item's UUIDgroupId - the primary key of the groupPortalException - if a matching site navigation menu item could not be found@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<SiteNavigationMenuItem> getSiteNavigationMenuItems(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.site.navigation.model.impl.SiteNavigationMenuItemModelImpl.
start - the lower bound of the range of site navigation menu itemsend - the upper bound of the range of site navigation menu items (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<SiteNavigationMenuItem> getSiteNavigationMenuItems(long siteNavigationMenuId)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<SiteNavigationMenuItem> getSiteNavigationMenuItems(long siteNavigationMenuId, long parentSiteNavigationMenuItemId)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<SiteNavigationMenuItem> getSiteNavigationMenuItemsByUuidAndCompanyId(java.lang.String uuid, long companyId)
uuid - the UUID of the site navigation menu itemscompanyId - the primary key of the company@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<SiteNavigationMenuItem> getSiteNavigationMenuItemsByUuidAndCompanyId(java.lang.String uuid, long companyId, int start, int end, OrderByComparator<SiteNavigationMenuItem> orderByComparator)
uuid - the UUID of the site navigation menu itemscompanyId - the primary key of the companystart - the lower bound of the range of site navigation menu itemsend - the upper bound of the range of site navigation menu items (not inclusive)orderByComparator - the comparator to order the results by (optionally null)@Transactional(propagation=SUPPORTS, readOnly=true) int getSiteNavigationMenuItemsCount()
@Transactional(propagation=SUPPORTS, readOnly=true) int getSiteNavigationMenuItemsCount(long siteNavigationMenuId)
SiteNavigationMenuItem updateSiteNavigationMenuItem(long siteNavigationMenuItemId, long parentSiteNavigationMenuItemId, int order) throws PortalException
PortalExceptionSiteNavigationMenuItem updateSiteNavigationMenuItem(long userId, long siteNavigationMenuItemId, long groupId, long siteNavigationMenuId, long parentSiteNavigationMenuItemId, java.lang.String type, int order, java.lang.String typeSettings) throws PortalException
PortalExceptionSiteNavigationMenuItem updateSiteNavigationMenuItem(long userId, long siteNavigationMenuItemId, java.lang.String typeSettings, ServiceContext serviceContext) throws PortalException
PortalException@Indexable(type=REINDEX) SiteNavigationMenuItem updateSiteNavigationMenuItem(SiteNavigationMenuItem siteNavigationMenuItem)
siteNavigationMenuItem - the site navigation menu item