@ProviderType @Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface SourceLocalService extends BaseLocalService, PersistedModelLocalService
SourceLocalServiceUtil| Modifier and Type | Method and Description |
|---|---|
Source |
addSource(long userId,
long groupId,
java.util.Map<java.util.Locale,java.lang.String> nameMap,
java.lang.String driverClassName,
java.lang.String driverUrl,
java.lang.String driverUserName,
java.lang.String driverPassword,
ServiceContext serviceContext) |
Source |
addSource(Source source)
Adds the source to the database.
|
PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
Source |
createSource(long sourceId)
Creates a new source with the primary key.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
Source |
deleteSource(long sourceId)
Deletes the source with the primary key from the database.
|
Source |
deleteSource(Source source)
Deletes the source from the database.
|
void |
deleteSources(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.
|
Source |
fetchSource(long sourceId) |
Source |
fetchSourceByUuidAndGroupId(java.lang.String uuid,
long groupId)
Returns the source 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) |
Source |
getSource(long sourceId)
Returns the source with the primary key.
|
Source |
getSourceByUuidAndGroupId(java.lang.String uuid,
long groupId)
Returns the source matching the UUID and group.
|
java.util.List<Source> |
getSources(int start,
int end)
Returns a range of all the sources.
|
java.util.List<Source> |
getSources(long groupId,
java.lang.String name,
java.lang.String driverUrl,
boolean andSearch,
int start,
int end,
OrderByComparator<Source> orderByComparator) |
java.util.List<Source> |
getSourcesByUuidAndCompanyId(java.lang.String uuid,
long companyId)
Returns all the sources matching the UUID and company.
|
java.util.List<Source> |
getSourcesByUuidAndCompanyId(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator<Source> orderByComparator)
Returns a range of sources matching the UUID and company.
|
int |
getSourcesCount()
Returns the number of sources.
|
int |
getSourcesCount(long groupId,
java.lang.String name,
java.lang.String driverUrl,
boolean andSearch) |
Source |
updateSource(long sourceId,
java.util.Map<java.util.Locale,java.lang.String> nameMap,
java.lang.String driverClassName,
java.lang.String driverUrl,
java.lang.String driverUserName,
java.lang.String driverPassword,
ServiceContext serviceContext) |
Source |
updateSource(Source source)
Updates the source in the database or adds it if it does not yet exist.
|
getBasePersistenceSource addSource(long userId, long groupId, java.util.Map<java.util.Locale,java.lang.String> nameMap, java.lang.String driverClassName, java.lang.String driverUrl, java.lang.String driverUserName, java.lang.String driverPassword, ServiceContext serviceContext) throws PortalException
PortalException@Indexable(type=REINDEX) Source addSource(Source source)
source - the sourcePersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
createPersistedModel in interface PersistedModelLocalServicePortalException@Transactional(enabled=false) Source createSource(long sourceId)
sourceId - the primary key for the new sourcePersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface PersistedModelLocalServicePortalException@Indexable(type=DELETE) Source deleteSource(long sourceId) throws PortalException
sourceId - the primary key of the sourcePortalException - if a source with the primary key could not be found@Indexable(type=DELETE) @SystemEvent(type=1) Source deleteSource(Source source) throws PortalException
source - the sourcePortalExceptionvoid deleteSources(long groupId)
throws PortalException
PortalException@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.portal.reports.engine.console.model.impl.SourceModelImpl.
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.portal.reports.engine.console.model.impl.SourceModelImpl.
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) Source fetchSource(long sourceId)
@Transactional(propagation=SUPPORTS, readOnly=true) Source fetchSourceByUuidAndGroupId(java.lang.String uuid, long groupId)
uuid - the source's UUIDgroupId - the primary key of the groupnull if a matching source 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) Source getSource(long sourceId) throws PortalException
sourceId - the primary key of the sourcePortalException - if a source with the primary key could not be found@Transactional(propagation=SUPPORTS, readOnly=true) Source getSourceByUuidAndGroupId(java.lang.String uuid, long groupId) throws PortalException
uuid - the source's UUIDgroupId - the primary key of the groupPortalException - if a matching source could not be found@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<Source> getSources(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.portal.reports.engine.console.model.impl.SourceModelImpl.
start - the lower bound of the range of sourcesend - the upper bound of the range of sources (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<Source> getSources(long groupId, java.lang.String name, java.lang.String driverUrl, boolean andSearch, int start, int end, OrderByComparator<Source> orderByComparator)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<Source> getSourcesByUuidAndCompanyId(java.lang.String uuid, long companyId)
uuid - the UUID of the sourcescompanyId - the primary key of the company@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<Source> getSourcesByUuidAndCompanyId(java.lang.String uuid, long companyId, int start, int end, OrderByComparator<Source> orderByComparator)
uuid - the UUID of the sourcescompanyId - the primary key of the companystart - the lower bound of the range of sourcesend - the upper bound of the range of sources (not inclusive)orderByComparator - the comparator to order the results by (optionally null)@Transactional(propagation=SUPPORTS, readOnly=true) int getSourcesCount()
@Transactional(propagation=SUPPORTS, readOnly=true) int getSourcesCount(long groupId, java.lang.String name, java.lang.String driverUrl, boolean andSearch)
Source updateSource(long sourceId, java.util.Map<java.util.Locale,java.lang.String> nameMap, java.lang.String driverClassName, java.lang.String driverUrl, java.lang.String driverUserName, java.lang.String driverPassword, ServiceContext serviceContext) throws PortalException
PortalException@Indexable(type=REINDEX) Source updateSource(Source source)
source - the source