@ProviderType public class TrashEntryLocalServiceWrapper extends java.lang.Object implements TrashEntryLocalService, ServiceWrapper<TrashEntryLocalService>
TrashEntryLocalService.TrashEntryLocalService| Constructor and Description |
|---|
TrashEntryLocalServiceWrapper(TrashEntryLocalService trashEntryLocalService) |
| Modifier and Type | Method and Description |
|---|---|
TrashEntry |
addTrashEntry(long userId,
long groupId,
java.lang.String className,
long classPK,
java.lang.String classUuid,
java.lang.String referrerClassName,
int status,
java.util.List<ObjectValuePair<java.lang.Long,java.lang.Integer>> statusOVPs,
UnicodeProperties typeSettingsProperties)
Moves an entry to trash.
|
TrashEntry |
addTrashEntry(TrashEntry trashEntry)
Adds the trash entry to the database.
|
void |
checkEntries() |
TrashEntry |
createTrashEntry(long entryId)
Creates a new trash entry with the primary key.
|
void |
deleteEntries(long groupId) |
TrashEntry |
deleteEntry(long entryId)
Deletes the trash entry with the primary key.
|
TrashEntry |
deleteEntry(java.lang.String className,
long classPK)
Deletes the trash entry with the entity class name and primary key.
|
TrashEntry |
deleteEntry(TrashEntry trashEntry) |
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
TrashEntry |
deleteTrashEntry(long entryId)
Deletes the trash entry with the primary key from the database.
|
TrashEntry |
deleteTrashEntry(TrashEntry trashEntry)
Deletes the trash entry from the database.
|
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.
|
TrashEntry |
fetchEntry(long entryId)
Returns the trash entry with the primary key.
|
TrashEntry |
fetchEntry(java.lang.String className,
long classPK)
Returns the trash entry with the entity class name and primary key.
|
TrashEntry |
fetchTrashEntry(long entryId) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
java.util.List<TrashEntry> |
getEntries(long groupId)
Returns the trash entries with the matching group ID.
|
java.util.List<TrashEntry> |
getEntries(long groupId,
int start,
int end)
Returns a range of all the trash entries matching the group ID.
|
java.util.List<TrashEntry> |
getEntries(long groupId,
int start,
int end,
OrderByComparator<TrashEntry> obc)
Returns a range of all the trash entries matching the group ID.
|
java.util.List<TrashEntry> |
getEntries(long groupId,
java.lang.String className) |
int |
getEntriesCount(long groupId)
Returns the number of trash entries with the group ID.
|
TrashEntry |
getEntry(long entryId)
Returns the trash entry with the primary key.
|
TrashEntry |
getEntry(java.lang.String className,
long classPK)
Returns the entry with the entity class name and primary key.
|
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
java.util.List<TrashEntry> |
getTrashEntries(int start,
int end)
Returns a range of all the trash entries.
|
int |
getTrashEntriesCount()
Returns the number of trash entries.
|
TrashEntry |
getTrashEntry(long entryId)
Returns the trash entry with the primary key.
|
TrashEntryLocalService |
getWrappedService() |
Hits |
search(long companyId,
long groupId,
long userId,
java.lang.String keywords,
int start,
int end,
Sort sort) |
BaseModelSearchResult<TrashEntry> |
searchTrashEntries(long companyId,
long groupId,
long userId,
java.lang.String keywords,
int start,
int end,
Sort sort) |
void |
setWrappedService(TrashEntryLocalService trashEntryLocalService) |
TrashEntry |
updateTrashEntry(TrashEntry trashEntry)
Updates the trash entry in the database or adds it if it does not yet exist.
|
public TrashEntryLocalServiceWrapper(TrashEntryLocalService trashEntryLocalService)
public TrashEntry addTrashEntry(TrashEntry trashEntry)
addTrashEntry in interface TrashEntryLocalServicetrashEntry - the trash entrypublic TrashEntry addTrashEntry(long userId, long groupId, java.lang.String className, long classPK, java.lang.String classUuid, java.lang.String referrerClassName, int status, java.util.List<ObjectValuePair<java.lang.Long,java.lang.Integer>> statusOVPs, UnicodeProperties typeSettingsProperties) throws PortalException
addTrashEntry in interface TrashEntryLocalServiceuserId - the primary key of the user removing the entitygroupId - the primary key of the entry's groupclassName - the class name of the entityclassPK - the primary key of the entityclassUuid - the UUID of the entity's classreferrerClassName - the referrer class name used to add a deletion
SystemEventstatus - the status of the entity prior to being moved to trashstatusOVPs - the primary keys and statuses of any of the entry's
versions (e.g., com.liferay.portlet.documentlibrary.model.DLFileVersion)typeSettingsProperties - the type settings propertiesPortalExceptionpublic void checkEntries()
throws PortalException
checkEntries in interface TrashEntryLocalServicePortalExceptionpublic TrashEntry createTrashEntry(long entryId)
createTrashEntry in interface TrashEntryLocalServiceentryId - the primary key for the new trash entrypublic void deleteEntries(long groupId)
deleteEntries in interface TrashEntryLocalServicepublic TrashEntry deleteEntry(java.lang.String className, long classPK)
deleteEntry in interface TrashEntryLocalServiceclassName - the class name of entityclassPK - the primary key of the entrypublic TrashEntry deleteEntry(long entryId)
deleteEntry in interface TrashEntryLocalServiceentryId - the primary key of the trash entrypublic TrashEntry deleteEntry(TrashEntry trashEntry)
deleteEntry in interface TrashEntryLocalServicepublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface PersistedModelLocalServicedeletePersistedModel in interface TrashEntryLocalServicePortalExceptionpublic TrashEntry deleteTrashEntry(long entryId) throws PortalException
deleteTrashEntry in interface TrashEntryLocalServiceentryId - the primary key of the trash entryPortalException - if a trash entry with the primary key could not be foundpublic TrashEntry deleteTrashEntry(TrashEntry trashEntry)
deleteTrashEntry in interface TrashEntryLocalServicetrashEntry - the trash entrypublic DynamicQuery dynamicQuery()
dynamicQuery in interface TrashEntryLocalServicepublic <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery in interface TrashEntryLocalServicedynamicQuery - 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 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 and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from com.liferay.portlet.trash.model.impl.TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
dynamicQuery in interface TrashEntryLocalServicedynamicQuery - 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 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 and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from com.liferay.portlet.trash.model.impl.TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
dynamicQuery in interface TrashEntryLocalServicedynamicQuery - 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 TrashEntryLocalServicedynamicQuery - the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount in interface TrashEntryLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic TrashEntry fetchEntry(java.lang.String className, long classPK)
fetchEntry in interface TrashEntryLocalServiceclassName - the class name of the entityclassPK - the primary key of the entitypublic TrashEntry fetchEntry(long entryId)
fetchEntry in interface TrashEntryLocalServiceentryId - the primary key of the entrypublic TrashEntry fetchTrashEntry(long entryId)
fetchTrashEntry in interface TrashEntryLocalServicepublic ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery in interface TrashEntryLocalServicepublic java.util.List<TrashEntry> getEntries(long groupId)
getEntries in interface TrashEntryLocalServicegroupId - the primary key of the grouppublic java.util.List<TrashEntry> getEntries(long groupId, java.lang.String className)
getEntries in interface TrashEntryLocalServicepublic java.util.List<TrashEntry> getEntries(long groupId, int start, int end)
getEntries in interface TrashEntryLocalServicegroupId - the primary key of the groupstart - the lower bound of the range of trash entries to returnend - the upper bound of the range of trash entries to return (not
inclusive)public java.util.List<TrashEntry> getEntries(long groupId, int start, int end, OrderByComparator<TrashEntry> obc)
getEntries in interface TrashEntryLocalServicegroupId - the primary key of the groupstart - the lower bound of the range of trash entries to returnend - the upper bound of the range of trash entries to return (not
inclusive)obc - the comparator to order the trash entries (optionally
null)obcpublic int getEntriesCount(long groupId)
getEntriesCount in interface TrashEntryLocalServicegroupId - the primary key of the grouppublic TrashEntry getEntry(java.lang.String className, long classPK) throws PortalException
getEntry in interface TrashEntryLocalServiceclassName - the class name of the entityclassPK - the primary key of the entityPortalExceptionpublic TrashEntry getEntry(long entryId) throws PortalException
getEntry in interface TrashEntryLocalServiceentryId - the primary key of the trash entryPortalExceptionpublic IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery in interface TrashEntryLocalServicepublic java.lang.String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface TrashEntryLocalServicepublic PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface PersistedModelLocalServicegetPersistedModel in interface TrashEntryLocalServicePortalExceptionpublic java.util.List<TrashEntry> getTrashEntries(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 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 and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from com.liferay.portlet.trash.model.impl.TrashEntryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
getTrashEntries in interface TrashEntryLocalServicestart - the lower bound of the range of trash entriesend - the upper bound of the range of trash entries (not inclusive)public int getTrashEntriesCount()
getTrashEntriesCount in interface TrashEntryLocalServicepublic TrashEntry getTrashEntry(long entryId) throws PortalException
getTrashEntry in interface TrashEntryLocalServiceentryId - the primary key of the trash entryPortalException - if a trash entry with the primary key could not be foundpublic Hits search(long companyId, long groupId, long userId, java.lang.String keywords, int start, int end, Sort sort)
search in interface TrashEntryLocalServicepublic BaseModelSearchResult<TrashEntry> searchTrashEntries(long companyId, long groupId, long userId, java.lang.String keywords, int start, int end, Sort sort)
searchTrashEntries in interface TrashEntryLocalServicepublic TrashEntry updateTrashEntry(TrashEntry trashEntry)
updateTrashEntry in interface TrashEntryLocalServicetrashEntry - the trash entrypublic TrashEntryLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<TrashEntryLocalService>public void setWrappedService(TrashEntryLocalService trashEntryLocalService)
setWrappedService in interface ServiceWrapper<TrashEntryLocalService>