@ProviderType
public class RepositoryEntryLocalServiceUtil
extends Object
RepositoryEntryLocalServiceImpl
and is the
primary access point for service operations in application layer code running
on the local server. Methods of this service will not have security checks
based on the propagated JAAS credentials because this service can only be
accessed from within the same VM.RepositoryEntryLocalService
,
RepositoryEntryLocalServiceBaseImpl
,
RepositoryEntryLocalServiceImpl
Constructor and Description |
---|
RepositoryEntryLocalServiceUtil() |
Modifier and Type | Method and Description |
---|---|
static RepositoryEntry |
addRepositoryEntry(long userId,
long groupId,
long repositoryId,
String mappedId,
ServiceContext serviceContext) |
static RepositoryEntry |
addRepositoryEntry(RepositoryEntry repositoryEntry)
Adds the repository entry to the database.
|
static RepositoryEntry |
createRepositoryEntry(long repositoryEntryId)
Creates a new repository entry with the primary key.
|
static PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
static void |
deleteRepositoryEntries(long repositoryId,
Iterable<String> mappedIds) |
static RepositoryEntry |
deleteRepositoryEntry(long repositoryEntryId)
Deletes the repository entry with the primary key from the database.
|
static void |
deleteRepositoryEntry(long repositoryId,
String mappedId) |
static RepositoryEntry |
deleteRepositoryEntry(RepositoryEntry repositoryEntry)
Deletes the repository entry from the database.
|
static DynamicQuery |
dynamicQuery() |
static <T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
static <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.
|
static <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.
|
static long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
static long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
static RepositoryEntry |
fetchRepositoryEntry(long repositoryEntryId) |
static RepositoryEntry |
fetchRepositoryEntryByUuidAndGroupId(String uuid,
long groupId)
Returns the repository entry matching the UUID and group.
|
static ActionableDynamicQuery |
getActionableDynamicQuery() |
static ExportActionableDynamicQuery |
getExportActionableDynamicQuery(PortletDataContext portletDataContext) |
static IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
static String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
static PersistedModel |
getPersistedModel(Serializable primaryKeyObj) |
static List<RepositoryEntry> |
getRepositoryEntries(int start,
int end)
Returns a range of all the repository entries.
|
static List<RepositoryEntry> |
getRepositoryEntries(long repositoryId) |
static List<RepositoryEntry> |
getRepositoryEntriesByUuidAndCompanyId(String uuid,
long companyId)
Returns all the repository entries matching the UUID and company.
|
static List<RepositoryEntry> |
getRepositoryEntriesByUuidAndCompanyId(String uuid,
long companyId,
int start,
int end,
OrderByComparator<RepositoryEntry> orderByComparator)
Returns a range of repository entries matching the UUID and company.
|
static int |
getRepositoryEntriesCount()
Returns the number of repository entries.
|
static RepositoryEntry |
getRepositoryEntry(long repositoryEntryId)
Returns the repository entry with the primary key.
|
static RepositoryEntry |
getRepositoryEntry(long userId,
long groupId,
long repositoryId,
String objectId) |
static RepositoryEntry |
getRepositoryEntry(String uuid,
long groupId) |
static RepositoryEntry |
getRepositoryEntryByUuidAndGroupId(String uuid,
long groupId)
Returns the repository entry matching the UUID and group.
|
static RepositoryEntryLocalService |
getService() |
static RepositoryEntry |
updateRepositoryEntry(long repositoryEntryId,
String mappedId) |
static RepositoryEntry |
updateRepositoryEntry(RepositoryEntry repositoryEntry)
Updates the repository entry in the database or adds it if it does not yet exist.
|
public static RepositoryEntry addRepositoryEntry(long userId, long groupId, long repositoryId, String mappedId, ServiceContext serviceContext) throws PortalException
PortalException
public static RepositoryEntry addRepositoryEntry(RepositoryEntry repositoryEntry)
repositoryEntry
- the repository entrypublic static RepositoryEntry createRepositoryEntry(long repositoryEntryId)
repositoryEntryId
- the primary key for the new repository entrypublic static PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
PortalException
public static void deleteRepositoryEntries(long repositoryId, Iterable<String> mappedIds) throws PortalException
PortalException
public static RepositoryEntry deleteRepositoryEntry(long repositoryEntryId) throws PortalException
repositoryEntryId
- the primary key of the repository entryPortalException
- if a repository entry with the primary key could not be foundpublic static void deleteRepositoryEntry(long repositoryId, String mappedId) throws PortalException
PortalException
public static RepositoryEntry deleteRepositoryEntry(RepositoryEntry repositoryEntry)
repositoryEntry
- the repository entrypublic static DynamicQuery dynamicQuery()
public static <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic querypublic static <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 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 RepositoryEntryModelImpl
. 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
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)public static <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 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 RepositoryEntryModelImpl
. 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
- 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 static long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic querypublic static long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the querypublic static RepositoryEntry fetchRepositoryEntry(long repositoryEntryId)
public static RepositoryEntry fetchRepositoryEntryByUuidAndGroupId(String uuid, long groupId)
uuid
- the repository entry's UUIDgroupId
- the primary key of the groupnull
if a matching repository entry could not be foundpublic static ActionableDynamicQuery getActionableDynamicQuery()
public static ExportActionableDynamicQuery getExportActionableDynamicQuery(PortletDataContext portletDataContext)
public static IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
public static String getOSGiServiceIdentifier()
public static PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
PortalException
public static List<RepositoryEntry> getRepositoryEntries(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 RepositoryEntryModelImpl
. 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.
start
- the lower bound of the range of repository entriesend
- the upper bound of the range of repository entries (not inclusive)public static List<RepositoryEntry> getRepositoryEntries(long repositoryId)
public static List<RepositoryEntry> getRepositoryEntriesByUuidAndCompanyId(String uuid, long companyId)
uuid
- the UUID of the repository entriescompanyId
- the primary key of the companypublic static List<RepositoryEntry> getRepositoryEntriesByUuidAndCompanyId(String uuid, long companyId, int start, int end, OrderByComparator<RepositoryEntry> orderByComparator)
uuid
- the UUID of the repository entriescompanyId
- the primary key of the companystart
- the lower bound of the range of repository entriesend
- the upper bound of the range of repository entries (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static int getRepositoryEntriesCount()
public static RepositoryEntry getRepositoryEntry(long repositoryEntryId) throws PortalException
repositoryEntryId
- the primary key of the repository entryPortalException
- if a repository entry with the primary key could not be foundpublic static RepositoryEntry getRepositoryEntry(long userId, long groupId, long repositoryId, String objectId) throws PortalException
PortalException
public static RepositoryEntry getRepositoryEntry(String uuid, long groupId) throws PortalException
PortalException
public static RepositoryEntry getRepositoryEntryByUuidAndGroupId(String uuid, long groupId) throws PortalException
uuid
- the repository entry's UUIDgroupId
- the primary key of the groupPortalException
- if a matching repository entry could not be foundpublic static RepositoryEntry updateRepositoryEntry(long repositoryEntryId, String mappedId) throws PortalException
PortalException
public static RepositoryEntry updateRepositoryEntry(RepositoryEntry repositoryEntry)
repositoryEntry
- the repository entrypublic static RepositoryEntryLocalService getService()