@ProviderType @Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface DepotEntryLocalService extends BaseLocalService, PersistedModelLocalService
DepotEntryLocalServiceUtil| Modifier and Type | Method and Description |
|---|---|
DepotEntry |
addDepotEntry(DepotEntry depotEntry)
Adds the depot entry to the database.
|
DepotEntry |
addDepotEntry(java.util.Map<java.util.Locale,java.lang.String> nameMap,
java.util.Map<java.util.Locale,java.lang.String> descriptionMap,
ServiceContext serviceContext) |
DepotEntry |
createDepotEntry(long depotEntryId)
Creates a new depot entry with the primary key.
|
PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
DepotEntry |
deleteDepotEntry(DepotEntry depotEntry)
Deletes the depot entry from the database.
|
DepotEntry |
deleteDepotEntry(long depotEntryId)
Deletes the depot entry with the primary key from the database.
|
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.
|
DepotEntry |
fetchDepotEntry(long depotEntryId) |
DepotEntry |
fetchDepotEntryByUuidAndGroupId(java.lang.String uuid,
long groupId)
Returns the depot entry matching the UUID and group.
|
DepotEntry |
fetchGroupDepotEntry(long groupId) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
java.util.List<DepotEntry> |
getDepotEntries(int start,
int end)
Returns a range of all the depot entries.
|
java.util.List<DepotEntry> |
getDepotEntriesByUuidAndCompanyId(java.lang.String uuid,
long companyId)
Returns all the depot entries matching the UUID and company.
|
java.util.List<DepotEntry> |
getDepotEntriesByUuidAndCompanyId(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator<DepotEntry> orderByComparator)
Returns a range of depot entries matching the UUID and company.
|
int |
getDepotEntriesCount()
Returns the number of depot entries.
|
DepotEntry |
getDepotEntry(long depotEntryId)
Returns the depot entry with the primary key.
|
DepotEntry |
getDepotEntryByUuidAndGroupId(java.lang.String uuid,
long groupId)
Returns the depot entry matching the UUID and group.
|
ExportActionableDynamicQuery |
getExportActionableDynamicQuery(PortletDataContext portletDataContext) |
java.util.List<DepotEntry> |
getGroupConnectedDepotEntries(long groupId,
int start,
int end) |
int |
getGroupConnectedDepotEntriesCount(long groupId) |
DepotEntry |
getGroupDepotEntry(long groupId) |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
DepotEntry |
updateDepotEntry(DepotEntry depotEntry)
Updates the depot entry in the database or adds it if it does not yet exist.
|
DepotEntry |
updateDepotEntry(long depotEntryId,
java.util.Map<java.util.Locale,java.lang.String> nameMap,
java.util.Map<java.util.Locale,java.lang.String> descriptionMap,
java.util.Map<java.lang.String,java.lang.Boolean> depotAppCustomizationMap,
UnicodeProperties typeSettingsUnicodeProperties,
ServiceContext serviceContext) |
getBasePersistence@Indexable(type=REINDEX) DepotEntry addDepotEntry(DepotEntry depotEntry)
depotEntry - the depot entryDepotEntry addDepotEntry(java.util.Map<java.util.Locale,java.lang.String> nameMap, java.util.Map<java.util.Locale,java.lang.String> descriptionMap, ServiceContext serviceContext) throws PortalException
PortalException@Transactional(enabled=false) DepotEntry createDepotEntry(long depotEntryId)
depotEntryId - the primary key for the new depot entryPersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
createPersistedModel in interface PersistedModelLocalServicePortalException@Indexable(type=DELETE) DepotEntry deleteDepotEntry(DepotEntry depotEntry)
depotEntry - the depot entry@Indexable(type=DELETE) DepotEntry deleteDepotEntry(long depotEntryId) throws PortalException
depotEntryId - the primary key of the depot entryPortalException - if a depot entry with the primary key could not be foundPersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface PersistedModelLocalServicePortalException@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.depot.model.impl.DepotEntryModelImpl.
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.depot.model.impl.DepotEntryModelImpl.
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) DepotEntry fetchDepotEntry(long depotEntryId)
@Transactional(propagation=SUPPORTS, readOnly=true) DepotEntry fetchDepotEntryByUuidAndGroupId(java.lang.String uuid, long groupId)
uuid - the depot entry's UUIDgroupId - the primary key of the groupnull if a matching depot entry could not be found@Transactional(propagation=SUPPORTS, readOnly=true) DepotEntry fetchGroupDepotEntry(long groupId)
@Transactional(propagation=SUPPORTS, readOnly=true) ActionableDynamicQuery getActionableDynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<DepotEntry> getDepotEntries(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.depot.model.impl.DepotEntryModelImpl.
start - the lower bound of the range of depot entriesend - the upper bound of the range of depot entries (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<DepotEntry> getDepotEntriesByUuidAndCompanyId(java.lang.String uuid, long companyId)
uuid - the UUID of the depot entriescompanyId - the primary key of the company@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<DepotEntry> getDepotEntriesByUuidAndCompanyId(java.lang.String uuid, long companyId, int start, int end, OrderByComparator<DepotEntry> orderByComparator)
uuid - the UUID of the depot entriescompanyId - the primary key of the companystart - the lower bound of the range of depot entriesend - the upper bound of the range of depot entries (not inclusive)orderByComparator - the comparator to order the results by (optionally null)@Transactional(propagation=SUPPORTS, readOnly=true) int getDepotEntriesCount()
@Transactional(propagation=SUPPORTS, readOnly=true) DepotEntry getDepotEntry(long depotEntryId) throws PortalException
depotEntryId - the primary key of the depot entryPortalException - if a depot entry with the primary key could not be found@Transactional(propagation=SUPPORTS, readOnly=true) DepotEntry getDepotEntryByUuidAndGroupId(java.lang.String uuid, long groupId) throws PortalException
uuid - the depot entry's UUIDgroupId - the primary key of the groupPortalException - if a matching depot entry could not be found@Transactional(propagation=SUPPORTS, readOnly=true) ExportActionableDynamicQuery getExportActionableDynamicQuery(PortletDataContext portletDataContext)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<DepotEntry> getGroupConnectedDepotEntries(long groupId, int start, int end) throws PortalException
PortalException@Transactional(propagation=SUPPORTS, readOnly=true) int getGroupConnectedDepotEntriesCount(long groupId)
@Transactional(propagation=SUPPORTS, readOnly=true) DepotEntry getGroupDepotEntry(long groupId) throws PortalException
PortalException@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@Indexable(type=REINDEX) DepotEntry updateDepotEntry(DepotEntry depotEntry)
depotEntry - the depot entryDepotEntry updateDepotEntry(long depotEntryId, java.util.Map<java.util.Locale,java.lang.String> nameMap, java.util.Map<java.util.Locale,java.lang.String> descriptionMap, java.util.Map<java.lang.String,java.lang.Boolean> depotAppCustomizationMap, UnicodeProperties typeSettingsUnicodeProperties, ServiceContext serviceContext) throws PortalException
PortalException