@ProviderType @Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface AnnouncementsEntryLocalService extends BaseLocalService, PersistedModelLocalService
AnnouncementsEntryLocalServiceUtil
,
AnnouncementsEntryLocalServiceBaseImpl
,
AnnouncementsEntryLocalServiceImpl
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) |
AnnouncementsEntry |
addEntry(long userId,
long classNameId,
long classPK,
String title,
String content,
String url,
String type,
int displayDateMonth,
int displayDateDay,
int displayDateYear,
int displayDateHour,
int displayDateMinute,
boolean displayImmediately,
int expirationDateMonth,
int expirationDateDay,
int expirationDateYear,
int expirationDateHour,
int expirationDateMinute,
int priority,
boolean alert)
Deprecated.
As of 7.0.0, replaced by
addEntry(long, long, long,
String, String, String, String, Date, Date, int, boolean) |
void |
checkEntries() |
AnnouncementsEntry |
createAnnouncementsEntry(long entryId)
Creates a new announcements entry with the primary key.
|
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 classNameId,
long classPK) |
void |
deleteEntry(AnnouncementsEntry entry) |
void |
deleteEntry(long entryId) |
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
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 classNameId,
long classPK,
boolean alert,
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) |
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 classNameId,
long classPK,
boolean alert) |
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) |
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 userId,
long entryId,
String title,
String content,
String url,
String type,
int displayDateMonth,
int displayDateDay,
int displayDateYear,
int displayDateHour,
int displayDateMinute,
boolean displayImmediately,
int expirationDateMonth,
int expirationDateDay,
int expirationDateYear,
int expirationDateHour,
int expirationDateMinute,
int priority)
Deprecated.
As of 7.0.0, replaced by
updateEntry(long, String,
String, String, String, Date, Date, int) |
AnnouncementsEntry |
updateEntry(long entryId,
String title,
String content,
String url,
String type,
Date displayDate,
Date expirationDate,
int priority) |
@Indexable(type=REINDEX) AnnouncementsEntry addAnnouncementsEntry(AnnouncementsEntry announcementsEntry)
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
@Deprecated AnnouncementsEntry addEntry(long userId, long classNameId, long classPK, String title, String content, String url, String type, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, boolean displayImmediately, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, int priority, boolean alert) throws PortalException
addEntry(long, long, long,
String, String, String, String, Date, Date, int, boolean)
PortalException
void checkEntries() throws PortalException
PortalException
@Transactional(enabled=false) AnnouncementsEntry createAnnouncementsEntry(long entryId)
entryId
- the primary key for the new announcements entry@Indexable(type=DELETE) AnnouncementsEntry deleteAnnouncementsEntry(AnnouncementsEntry announcementsEntry)
announcementsEntry
- the announcements entry@Indexable(type=DELETE) AnnouncementsEntry deleteAnnouncementsEntry(long entryId) throws PortalException
entryId
- the primary key of the announcements entryPortalException
- if a announcements entry with the primary key could not be foundvoid deleteEntries(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
DynamicQuery dynamicQuery()
<T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic query<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 AnnouncementsEntryModelImpl
. 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)<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 AnnouncementsEntryModelImpl
. 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
)long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic querylong 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 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 AnnouncementsEntryModelImpl
. 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 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 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 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)
announcementsEntry
- the announcements entry@Deprecated AnnouncementsEntry updateEntry(long userId, long entryId, String title, String content, String url, String type, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, boolean displayImmediately, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, int priority) throws PortalException
updateEntry(long, String,
String, String, String, Date, Date, int)
PortalException
AnnouncementsEntry updateEntry(long entryId, String title, String content, String url, String type, Date displayDate, Date expirationDate, int priority) throws PortalException
PortalException