public interface CalendarService
| Modifier and Type | Method and Description |
|---|---|
CalendarEntry |
createCalendarEntry(java.lang.String siteShortName,
CalendarEntry entry)
Stores a new
CalendarEntry into the given site. |
void |
deleteCalendarEntry(CalendarEntry entry)
Deletes an existing
CalendarEntry from the repository |
CalendarEntry |
getCalendarEntry(java.lang.String siteShortName,
java.lang.String entryName)
Retrieves an existing
CalendarEntry from the repository |
org.alfresco.query.PagingResults |
listCalendarEntries(java.lang.String[] siteShortNames,
java.util.Date from,
java.util.Date to,
org.alfresco.query.PagingRequest paging)
Retrieves all
CalendarEntry instances in the repository
for the given sites, between the specified date range. |
org.alfresco.query.PagingResults |
listCalendarEntries(java.lang.String[] siteShortNames,
org.alfresco.query.PagingRequest paging)
Retrieves all
CalendarEntry instances in the repository
for the given sites. |
org.alfresco.query.PagingResults |
listCalendarEntries(java.lang.String siteShortName,
org.alfresco.query.PagingRequest paging)
Retrieves all
CalendarEntry instances in the repository
for the given site. |
org.alfresco.query.PagingResults |
listOutlookCalendarEntries(java.lang.String siteShortName,
java.lang.String outlookUID,
org.alfresco.query.PagingRequest paging)
Retrieves all Outlook based
CalendarEntry instances in the repository
for the given site, optionally filtered by the Outlook Event UID. |
CalendarEntry |
updateCalendarEntry(CalendarEntry entry)
Updates an existing
CalendarEntry in the repository. |
@NotAuditable CalendarEntry createCalendarEntry(java.lang.String siteShortName, CalendarEntry entry)
CalendarEntry into the given site.
The concrete class CalendarEntryDTO can be used
to create a CalendarEntry instance for this.@NotAuditable CalendarEntry updateCalendarEntry(CalendarEntry entry)
CalendarEntry in the repository.@NotAuditable void deleteCalendarEntry(CalendarEntry entry)
CalendarEntry from the repository@NotAuditable CalendarEntry getCalendarEntry(java.lang.String siteShortName, java.lang.String entryName)
CalendarEntry from the repository@NotAuditable
org.alfresco.query.PagingResults listCalendarEntries(java.lang.String siteShortName,
org.alfresco.query.PagingRequest paging)
CalendarEntry instances in the repository
for the given site.@NotAuditable
org.alfresco.query.PagingResults listCalendarEntries(java.lang.String[] siteShortNames,
org.alfresco.query.PagingRequest paging)
CalendarEntry instances in the repository
for the given sites.@NotAuditable
org.alfresco.query.PagingResults listCalendarEntries(java.lang.String[] siteShortNames,
java.util.Date from,
java.util.Date to,
org.alfresco.query.PagingRequest paging)
CalendarEntry instances in the repository
for the given sites, between the specified date range.@NotAuditable
org.alfresco.query.PagingResults listOutlookCalendarEntries(java.lang.String siteShortName,
java.lang.String outlookUID,
org.alfresco.query.PagingRequest paging)
CalendarEntry instances in the repository
for the given site, optionally filtered by the Outlook Event UID.Copyright © 2005 - 2010 Alfresco Software, Inc. All Rights Reserved.