public class AssetListEntryLocalServiceWrapper extends java.lang.Object implements AssetListEntryLocalService, ServiceWrapper<AssetListEntryLocalService>
AssetListEntryLocalService.AssetListEntryLocalService| Constructor and Description |
|---|
AssetListEntryLocalServiceWrapper(AssetListEntryLocalService assetListEntryLocalService) |
| Modifier and Type | Method and Description |
|---|---|
void |
addAssetEntrySelection(long assetListEntryId,
long assetEntryId,
long segmentsEntryId,
ServiceContext serviceContext) |
void |
addAssetEntrySelections(long assetListEntryId,
long[] assetEntryIds,
long segmentsEntryId,
ServiceContext serviceContext) |
AssetListEntry |
addAssetListEntry(AssetListEntry assetListEntry)
Adds the asset list entry to the database.
|
AssetListEntry |
addAssetListEntry(long userId,
long groupId,
java.lang.String title,
int type,
ServiceContext serviceContext) |
AssetListEntry |
addAssetListEntry(long userId,
long groupId,
java.lang.String title,
int type,
java.lang.String typeSettings,
ServiceContext serviceContext) |
AssetListEntry |
addDynamicAssetListEntry(long userId,
long groupId,
java.lang.String title,
java.lang.String typeSettings,
ServiceContext serviceContext) |
AssetListEntry |
addManualAssetListEntry(long userId,
long groupId,
java.lang.String title,
long[] assetEntryIds,
ServiceContext serviceContext) |
AssetListEntry |
createAssetListEntry(long assetListEntryId)
Creates a new asset list entry with the primary key.
|
PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
void |
deleteAssetEntrySelection(long assetListEntryId,
long segmentsEntryId,
int position) |
AssetListEntry |
deleteAssetListEntry(AssetListEntry assetListEntry)
Deletes the asset list entry from the database.
|
AssetListEntry |
deleteAssetListEntry(long assetListEntryId)
Deletes the asset list entry with the primary key from the database.
|
AssetListEntry |
deleteAssetListEntry(long assetListEntryId,
long segmentsEntryId) |
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
<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.
|
AssetListEntry |
fetchAssetListEntry(long assetListEntryId) |
AssetListEntry |
fetchAssetListEntryByUuidAndGroupId(java.lang.String uuid,
long groupId)
Returns the asset list entry matching the UUID and group.
|
ActionableDynamicQuery |
getActionableDynamicQuery() |
java.util.List<AssetListEntry> |
getAssetListEntries(int start,
int end)
Returns a range of all the asset list entries.
|
java.util.List<AssetListEntry> |
getAssetListEntries(long groupId) |
java.util.List<AssetListEntry> |
getAssetListEntriesByUuidAndCompanyId(java.lang.String uuid,
long companyId)
Returns all the asset list entries matching the UUID and company.
|
java.util.List<AssetListEntry> |
getAssetListEntriesByUuidAndCompanyId(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator<AssetListEntry> orderByComparator)
Returns a range of asset list entries matching the UUID and company.
|
int |
getAssetListEntriesCount()
Returns the number of asset list entries.
|
AssetListEntry |
getAssetListEntry(long assetListEntryId)
Returns the asset list entry with the primary key.
|
AssetListEntry |
getAssetListEntry(long groupId,
java.lang.String assetListEntryKey) |
AssetListEntry |
getAssetListEntryByUuidAndGroupId(java.lang.String uuid,
long groupId)
Returns the asset list entry matching the UUID and group.
|
CTPersistence<AssetListEntry> |
getCTPersistence() |
ExportActionableDynamicQuery |
getExportActionableDynamicQuery(PortletDataContext portletDataContext) |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
java.lang.Class<AssetListEntry> |
getModelClass() |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
AssetListEntryLocalService |
getWrappedService() |
void |
moveAssetEntrySelection(long assetListEntryId,
long segmentsEntryId,
int position,
int newPosition) |
void |
setWrappedService(AssetListEntryLocalService assetListEntryLocalService) |
AssetListEntry |
updateAssetListEntry(AssetListEntry assetListEntry)
Updates the asset list entry in the database or adds it if it does not yet exist.
|
AssetListEntry |
updateAssetListEntry(long assetListEntryId,
long segmentsEntryId,
java.lang.String typeSettings,
ServiceContext serviceContext) |
AssetListEntry |
updateAssetListEntry(long assetListEntryId,
java.lang.String title) |
void |
updateAssetListEntryTypeSettings(long assetListEntryId,
long segmentsEntryId,
java.lang.String typeSettings) |
<R,E extends java.lang.Throwable> |
updateWithUnsafeFunction(UnsafeFunction<CTPersistence<AssetListEntry>,R,E> updateUnsafeFunction) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetBasePersistencepublic AssetListEntryLocalServiceWrapper(AssetListEntryLocalService assetListEntryLocalService)
public void addAssetEntrySelection(long assetListEntryId,
long assetEntryId,
long segmentsEntryId,
ServiceContext serviceContext)
throws PortalException
addAssetEntrySelection in interface AssetListEntryLocalServicePortalExceptionpublic void addAssetEntrySelections(long assetListEntryId,
long[] assetEntryIds,
long segmentsEntryId,
ServiceContext serviceContext)
throws PortalException
addAssetEntrySelections in interface AssetListEntryLocalServicePortalExceptionpublic AssetListEntry addAssetListEntry(AssetListEntry assetListEntry)
Important: Inspect AssetListEntryLocalServiceImpl 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.
addAssetListEntry in interface AssetListEntryLocalServiceassetListEntry - the asset list entrypublic AssetListEntry addAssetListEntry(long userId, long groupId, java.lang.String title, int type, ServiceContext serviceContext) throws PortalException
addAssetListEntry in interface AssetListEntryLocalServicePortalExceptionpublic AssetListEntry addAssetListEntry(long userId, long groupId, java.lang.String title, int type, java.lang.String typeSettings, ServiceContext serviceContext) throws PortalException
addAssetListEntry in interface AssetListEntryLocalServicePortalExceptionpublic AssetListEntry addDynamicAssetListEntry(long userId, long groupId, java.lang.String title, java.lang.String typeSettings, ServiceContext serviceContext) throws PortalException
addDynamicAssetListEntry in interface AssetListEntryLocalServicePortalExceptionpublic AssetListEntry addManualAssetListEntry(long userId, long groupId, java.lang.String title, long[] assetEntryIds, ServiceContext serviceContext) throws PortalException
addManualAssetListEntry in interface AssetListEntryLocalServicePortalExceptionpublic AssetListEntry createAssetListEntry(long assetListEntryId)
createAssetListEntry in interface AssetListEntryLocalServiceassetListEntryId - the primary key for the new asset list entrypublic PersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
createPersistedModel in interface AssetListEntryLocalServicecreatePersistedModel in interface PersistedModelLocalServicePortalExceptionpublic void deleteAssetEntrySelection(long assetListEntryId,
long segmentsEntryId,
int position)
throws PortalException
deleteAssetEntrySelection in interface AssetListEntryLocalServicePortalExceptionpublic AssetListEntry deleteAssetListEntry(AssetListEntry assetListEntry) throws PortalException
Important: Inspect AssetListEntryLocalServiceImpl 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.
deleteAssetListEntry in interface AssetListEntryLocalServiceassetListEntry - the asset list entryPortalExceptionpublic AssetListEntry deleteAssetListEntry(long assetListEntryId) throws PortalException
Important: Inspect AssetListEntryLocalServiceImpl 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.
deleteAssetListEntry in interface AssetListEntryLocalServiceassetListEntryId - the primary key of the asset list entryPortalException - if a asset list entry with the primary key could not be foundpublic AssetListEntry deleteAssetListEntry(long assetListEntryId, long segmentsEntryId) throws PortalException
deleteAssetListEntry in interface AssetListEntryLocalServicePortalExceptionpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface AssetListEntryLocalServicedeletePersistedModel in interface PersistedModelLocalServicePortalExceptionpublic <T> T dslQuery(DSLQuery dslQuery)
dslQuery in interface AssetListEntryLocalServicepublic DynamicQuery dynamicQuery()
dynamicQuery in interface AssetListEntryLocalServicepublic <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery in interface AssetListEntryLocalServicedynamicQuery - the dynamic querypublic <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.asset.list.model.impl.AssetListEntryModelImpl.
dynamicQuery in interface AssetListEntryLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)public <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.asset.list.model.impl.AssetListEntryModelImpl.
dynamicQuery in interface AssetListEntryLocalServicedynamicQuery - 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)public long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQueryCount in interface AssetListEntryLocalServicedynamicQuery - the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount in interface AssetListEntryLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic AssetListEntry fetchAssetListEntry(long assetListEntryId)
fetchAssetListEntry in interface AssetListEntryLocalServicepublic AssetListEntry fetchAssetListEntryByUuidAndGroupId(java.lang.String uuid, long groupId)
fetchAssetListEntryByUuidAndGroupId in interface AssetListEntryLocalServiceuuid - the asset list entry's UUIDgroupId - the primary key of the groupnull if a matching asset list entry could not be foundpublic ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery in interface AssetListEntryLocalServicepublic java.util.List<AssetListEntry> getAssetListEntries(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.asset.list.model.impl.AssetListEntryModelImpl.
getAssetListEntries in interface AssetListEntryLocalServicestart - the lower bound of the range of asset list entriesend - the upper bound of the range of asset list entries (not inclusive)public java.util.List<AssetListEntry> getAssetListEntries(long groupId)
getAssetListEntries in interface AssetListEntryLocalServicepublic java.util.List<AssetListEntry> getAssetListEntriesByUuidAndCompanyId(java.lang.String uuid, long companyId)
getAssetListEntriesByUuidAndCompanyId in interface AssetListEntryLocalServiceuuid - the UUID of the asset list entriescompanyId - the primary key of the companypublic java.util.List<AssetListEntry> getAssetListEntriesByUuidAndCompanyId(java.lang.String uuid, long companyId, int start, int end, OrderByComparator<AssetListEntry> orderByComparator)
getAssetListEntriesByUuidAndCompanyId in interface AssetListEntryLocalServiceuuid - the UUID of the asset list entriescompanyId - the primary key of the companystart - the lower bound of the range of asset list entriesend - the upper bound of the range of asset list entries (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public int getAssetListEntriesCount()
getAssetListEntriesCount in interface AssetListEntryLocalServicepublic AssetListEntry getAssetListEntry(long assetListEntryId) throws PortalException
getAssetListEntry in interface AssetListEntryLocalServiceassetListEntryId - the primary key of the asset list entryPortalException - if a asset list entry with the primary key could not be foundpublic AssetListEntry getAssetListEntry(long groupId, java.lang.String assetListEntryKey) throws PortalException
getAssetListEntry in interface AssetListEntryLocalServicePortalExceptionpublic AssetListEntry getAssetListEntryByUuidAndGroupId(java.lang.String uuid, long groupId) throws PortalException
getAssetListEntryByUuidAndGroupId in interface AssetListEntryLocalServiceuuid - the asset list entry's UUIDgroupId - the primary key of the groupPortalException - if a matching asset list entry could not be foundpublic ExportActionableDynamicQuery getExportActionableDynamicQuery(PortletDataContext portletDataContext)
getExportActionableDynamicQuery in interface AssetListEntryLocalServicepublic IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery in interface AssetListEntryLocalServicepublic java.lang.String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface AssetListEntryLocalServicepublic PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface AssetListEntryLocalServicegetPersistedModel in interface PersistedModelLocalServicePortalExceptionpublic void moveAssetEntrySelection(long assetListEntryId,
long segmentsEntryId,
int position,
int newPosition)
throws PortalException
moveAssetEntrySelection in interface AssetListEntryLocalServicePortalExceptionpublic AssetListEntry updateAssetListEntry(AssetListEntry assetListEntry)
Important: Inspect AssetListEntryLocalServiceImpl 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.
updateAssetListEntry in interface AssetListEntryLocalServiceassetListEntry - the asset list entrypublic AssetListEntry updateAssetListEntry(long assetListEntryId, long segmentsEntryId, java.lang.String typeSettings, ServiceContext serviceContext) throws PortalException
updateAssetListEntry in interface AssetListEntryLocalServicePortalExceptionpublic AssetListEntry updateAssetListEntry(long assetListEntryId, java.lang.String title) throws PortalException
updateAssetListEntry in interface AssetListEntryLocalServicePortalExceptionpublic void updateAssetListEntryTypeSettings(long assetListEntryId,
long segmentsEntryId,
java.lang.String typeSettings)
throws PortalException
updateAssetListEntryTypeSettings in interface AssetListEntryLocalServicePortalExceptionpublic CTPersistence<AssetListEntry> getCTPersistence()
getCTPersistence in interface AssetListEntryLocalServicegetCTPersistence in interface CTService<AssetListEntry>public java.lang.Class<AssetListEntry> getModelClass()
getModelClass in interface AssetListEntryLocalServicegetModelClass in interface CTService<AssetListEntry>public <R,E extends java.lang.Throwable> R updateWithUnsafeFunction(UnsafeFunction<CTPersistence<AssetListEntry>,R,E> updateUnsafeFunction) throws E extends java.lang.Throwable
updateWithUnsafeFunction in interface AssetListEntryLocalServiceupdateWithUnsafeFunction in interface CTService<AssetListEntry>E extends java.lang.Throwablepublic AssetListEntryLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<AssetListEntryLocalService>public void setWrappedService(AssetListEntryLocalService assetListEntryLocalService)
setWrappedService in interface ServiceWrapper<AssetListEntryLocalService>