@ProviderType @Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface AnnouncementsEntryLocalService extends BaseLocalService, PersistedModelLocalService
AnnouncementsEntryLocalServiceUtil
Modifier and Type | Method and Description |
---|---|
AnnouncementsEntry |
addAnnouncementsEntry(AnnouncementsEntry announcementsEntry)
Adds the announcements entry to the database.
|
AnnouncementsEntry |
addEntry(long userId,
long classNameId,
long classPK,
String title,
String content,
String url,
String type,
Date displayDate,
Date expirationDate,
int priority,
boolean alert) |
void |
checkEntries() |
void |
checkEntries(Date startDate,
Date endDate) |
AnnouncementsEntry |
createAnnouncementsEntry(long entryId)
Creates a new announcements entry with the primary key.
|
PersistedModel |
createPersistedModel(Serializable primaryKeyObj) |
AnnouncementsEntry |
deleteAnnouncementsEntry(AnnouncementsEntry announcementsEntry)
Deletes the announcements entry from the database.
|
AnnouncementsEntry |
deleteAnnouncementsEntry(long entryId)
Deletes the announcements entry with the primary key from the database.
|
void |
deleteEntries(long companyId) |
void |
deleteEntries(long classNameId,
long classPK) |
void |
deleteEntries(long companyId,
long classNameId,
long classPK) |
void |
deleteEntry(AnnouncementsEntry entry) |
void |
deleteEntry(long entryId) |
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
<T> T |
dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
DynamicQuery |
dynamicQuery() |
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<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.
|
<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.
|
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.
|
AnnouncementsEntry |
fetchAnnouncementsEntry(long entryId) |
AnnouncementsEntry |
fetchAnnouncementsEntryByUuidAndCompanyId(String uuid,
long companyId)
Returns the announcements entry with the matching UUID and company.
|
ActionableDynamicQuery |
getActionableDynamicQuery() |
List<AnnouncementsEntry> |
getAnnouncementsEntries(int start,
int end)
Returns a range of all the announcements entries.
|
int |
getAnnouncementsEntriesCount()
Returns the number of announcements entries.
|
AnnouncementsEntry |
getAnnouncementsEntry(long entryId)
Returns the announcements entry with the primary key.
|
AnnouncementsEntry |
getAnnouncementsEntryByUuidAndCompanyId(String uuid,
long companyId)
Returns the announcements entry with the matching UUID and company.
|
List<AnnouncementsEntry> |
getEntries(long userId,
LinkedHashMap<Long,long[]> scopes,
boolean alert,
int flagValue,
int start,
int end) |
List<AnnouncementsEntry> |
getEntries(long userId,
LinkedHashMap<Long,long[]> scopes,
int displayDateMonth,
int displayDateDay,
int displayDateYear,
int displayDateHour,
int displayDateMinute,
int expirationDateMonth,
int expirationDateDay,
int expirationDateYear,
int expirationDateHour,
int expirationDateMinute,
boolean alert,
int flagValue,
int start,
int end) |
List<AnnouncementsEntry> |
getEntries(long userId,
long classNameId,
long[] classPKs,
int displayDateMonth,
int displayDateDay,
int displayDateYear,
int displayDateHour,
int displayDateMinute,
int expirationDateMonth,
int expirationDateDay,
int expirationDateYear,
int expirationDateHour,
int expirationDateMinute,
boolean alert,
int flagValue,
int start,
int end) |
List<AnnouncementsEntry> |
getEntries(long companyId,
long classNameId,
long classPK,
boolean alert,
int start,
int end) |
int |
getEntriesCount(long userId,
LinkedHashMap<Long,long[]> scopes,
boolean alert,
int flagValue) |
int |
getEntriesCount(long userId,
LinkedHashMap<Long,long[]> scopes,
int displayDateMonth,
int displayDateDay,
int displayDateYear,
int displayDateHour,
int displayDateMinute,
int expirationDateMonth,
int expirationDateDay,
int expirationDateYear,
int expirationDateHour,
int expirationDateMinute,
boolean alert,
int flagValue) |
int |
getEntriesCount(long userId,
long classNameId,
long[] classPKs,
boolean alert,
int flagValue) |
int |
getEntriesCount(long userId,
long classNameId,
long[] classPKs,
int displayDateMonth,
int displayDateDay,
int displayDateYear,
int displayDateHour,
int displayDateMinute,
int expirationDateMonth,
int expirationDateDay,
int expirationDateYear,
int expirationDateHour,
int expirationDateMinute,
boolean alert,
int flagValue) |
int |
getEntriesCount(long companyId,
long classNameId,
long classPK,
boolean alert) |
AnnouncementsEntry |
getEntry(long entryId) |
ExportActionableDynamicQuery |
getExportActionableDynamicQuery(PortletDataContext portletDataContext) |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj) |
List<AnnouncementsEntry> |
getUserEntries(long userId,
int start,
int end) |
int |
getUserEntriesCount(long userId) |
AnnouncementsEntry |
updateAnnouncementsEntry(AnnouncementsEntry announcementsEntry)
Updates the announcements entry in the database or adds it if it does not yet exist.
|
AnnouncementsEntry |
updateEntry(long entryId,
String title,
String content,
String url,
String type,
Date displayDate,
Date expirationDate,
int priority) |
getBasePersistence
@Indexable(type=REINDEX) AnnouncementsEntry addAnnouncementsEntry(AnnouncementsEntry announcementsEntry)
Important: Inspect AnnouncementsEntryLocalServiceImpl 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.
announcementsEntry
- the announcements entryAnnouncementsEntry addEntry(long userId, long classNameId, long classPK, String title, String content, String url, String type, Date displayDate, Date expirationDate, int priority, boolean alert) throws PortalException
PortalException
void checkEntries() throws PortalException
PortalException
void checkEntries(Date startDate, Date endDate) throws PortalException
PortalException
@Transactional(enabled=false) AnnouncementsEntry createAnnouncementsEntry(long entryId)
entryId
- the primary key for the new announcements entryPersistedModel createPersistedModel(Serializable primaryKeyObj) throws PortalException
createPersistedModel
in interface PersistedModelLocalService
PortalException
@Indexable(type=DELETE) AnnouncementsEntry deleteAnnouncementsEntry(AnnouncementsEntry announcementsEntry)
Important: Inspect AnnouncementsEntryLocalServiceImpl 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.
announcementsEntry
- the announcements entry@Indexable(type=DELETE) AnnouncementsEntry deleteAnnouncementsEntry(long entryId) throws PortalException
Important: Inspect AnnouncementsEntryLocalServiceImpl 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.
entryId
- the primary key of the announcements entryPortalException
- if a announcements entry with the primary key could not be foundvoid deleteEntries(long companyId)
void deleteEntries(long classNameId, long classPK) throws PortalException
PortalException
void deleteEntries(long companyId, long classNameId, long classPK) throws PortalException
PortalException
void deleteEntry(AnnouncementsEntry entry) throws PortalException
PortalException
void deleteEntry(long entryId) throws PortalException
PortalException
PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel
in interface PersistedModelLocalService
PortalException
@Transactional(propagation=SUPPORTS, readOnly=true) <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
@Transactional(propagation=SUPPORTS, readOnly=true) DynamicQuery dynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic query@Transactional(propagation=SUPPORTS, readOnly=true) <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 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.portlet.announcements.model.impl.AnnouncementsEntryModelImpl
.
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> 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.portlet.announcements.model.impl.AnnouncementsEntryModelImpl
.
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) AnnouncementsEntry fetchAnnouncementsEntry(long entryId)
@Transactional(propagation=SUPPORTS, readOnly=true) AnnouncementsEntry fetchAnnouncementsEntryByUuidAndCompanyId(String uuid, long companyId)
uuid
- the announcements entry's UUIDcompanyId
- the primary key of the companynull
if a matching announcements entry could not be found@Transactional(propagation=SUPPORTS, readOnly=true) ActionableDynamicQuery getActionableDynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) List<AnnouncementsEntry> getAnnouncementsEntries(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.portlet.announcements.model.impl.AnnouncementsEntryModelImpl
.
start
- the lower bound of the range of announcements entriesend
- the upper bound of the range of announcements entries (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) int getAnnouncementsEntriesCount()
@Transactional(propagation=SUPPORTS, readOnly=true) AnnouncementsEntry getAnnouncementsEntry(long entryId) throws PortalException
entryId
- the primary key of the announcements entryPortalException
- if a announcements entry with the primary key could not be found@Transactional(propagation=SUPPORTS, readOnly=true) AnnouncementsEntry getAnnouncementsEntryByUuidAndCompanyId(String uuid, long companyId) throws PortalException
uuid
- the announcements entry's UUIDcompanyId
- the primary key of the companyPortalException
- if a matching announcements entry could not be found@Transactional(propagation=SUPPORTS, readOnly=true) List<AnnouncementsEntry> getEntries(long userId, LinkedHashMap<Long,long[]> scopes, boolean alert, int flagValue, int start, int end)
@Transactional(propagation=SUPPORTS, readOnly=true) List<AnnouncementsEntry> getEntries(long userId, LinkedHashMap<Long,long[]> scopes, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean alert, int flagValue, int start, int end)
@Transactional(propagation=SUPPORTS, readOnly=true) List<AnnouncementsEntry> getEntries(long companyId, long classNameId, long classPK, boolean alert, int start, int end)
@Transactional(propagation=SUPPORTS, readOnly=true) List<AnnouncementsEntry> getEntries(long userId, long classNameId, long[] classPKs, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean alert, int flagValue, int start, int end)
@Transactional(propagation=SUPPORTS, readOnly=true) int getEntriesCount(long userId, LinkedHashMap<Long,long[]> scopes, boolean alert, int flagValue)
@Transactional(propagation=SUPPORTS, readOnly=true) int getEntriesCount(long userId, LinkedHashMap<Long,long[]> scopes, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean alert, int flagValue)
@Transactional(propagation=SUPPORTS, readOnly=true) int getEntriesCount(long companyId, long classNameId, long classPK, boolean alert)
@Transactional(propagation=SUPPORTS, readOnly=true) int getEntriesCount(long userId, long classNameId, long[] classPKs, boolean alert, int flagValue)
@Transactional(propagation=SUPPORTS, readOnly=true) int getEntriesCount(long userId, long classNameId, long[] classPKs, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean alert, int flagValue)
@Transactional(propagation=SUPPORTS, readOnly=true) AnnouncementsEntry getEntry(long entryId) throws PortalException
PortalException
@Transactional(propagation=SUPPORTS, readOnly=true) ExportActionableDynamicQuery getExportActionableDynamicQuery(PortletDataContext portletDataContext)
@Transactional(propagation=SUPPORTS, readOnly=true) IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
String getOSGiServiceIdentifier()
@Transactional(propagation=SUPPORTS, readOnly=true) PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel
in interface PersistedModelLocalService
PortalException
@Transactional(propagation=SUPPORTS, readOnly=true) List<AnnouncementsEntry> getUserEntries(long userId, int start, int end)
@Transactional(propagation=SUPPORTS, readOnly=true) int getUserEntriesCount(long userId)
@Indexable(type=REINDEX) AnnouncementsEntry updateAnnouncementsEntry(AnnouncementsEntry announcementsEntry)
Important: Inspect AnnouncementsEntryLocalServiceImpl 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.
announcementsEntry
- the announcements entryAnnouncementsEntry updateEntry(long entryId, String title, String content, String url, String type, Date displayDate, Date expirationDate, int priority) throws PortalException
PortalException