@AccessControlled @JSONWebService @ProviderType @Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface FragmentEntryService extends BaseService
FragmentEntryServiceUtil| Modifier and Type | Method and Description |
|---|---|
FragmentEntry |
addFragmentEntry(long groupId,
long fragmentCollectionId,
java.lang.String fragmentEntryKey,
java.lang.String name,
long previewFileEntryId,
int type,
int status,
ServiceContext serviceContext) |
FragmentEntry |
addFragmentEntry(long groupId,
long fragmentCollectionId,
java.lang.String fragmentEntryKey,
java.lang.String name,
java.lang.String css,
java.lang.String html,
java.lang.String js,
boolean cacheable,
java.lang.String configuration,
long previewFileEntryId,
int type,
int status,
ServiceContext serviceContext) |
FragmentEntry |
addFragmentEntry(long groupId,
long fragmentCollectionId,
java.lang.String fragmentEntryKey,
java.lang.String name,
java.lang.String css,
java.lang.String html,
java.lang.String js,
java.lang.String configuration,
long previewFileEntryId,
int type,
int status,
ServiceContext serviceContext) |
FragmentEntry |
copyFragmentEntry(long groupId,
long fragmentEntryId,
long fragmentCollectionId,
ServiceContext serviceContext) |
void |
deleteFragmentEntries(long[] fragmentEntriesIds) |
FragmentEntry |
deleteFragmentEntry(long fragmentEntryId) |
FragmentEntry |
fetchDraft(long primaryKey) |
FragmentEntry |
fetchFragmentEntry(long fragmentEntryId) |
FragmentEntry |
getDraft(long primaryKey) |
java.util.List<java.lang.Object> |
getFragmentCompositionsAndFragmentEntries(long groupId,
long fragmentCollectionId,
int status,
int start,
int end,
OrderByComparator<?> orderByComparator) |
java.util.List<java.lang.Object> |
getFragmentCompositionsAndFragmentEntries(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status,
int start,
int end,
OrderByComparator<?> orderByComparator) |
int |
getFragmentCompositionsAndFragmentEntriesCount(long groupId,
long fragmentCollectionId,
int status) |
int |
getFragmentCompositionsAndFragmentEntriesCount(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status) |
java.util.List<FragmentEntry> |
getFragmentEntries(long fragmentCollectionId) |
java.util.List<FragmentEntry> |
getFragmentEntries(long groupId,
long fragmentCollectionId,
int start,
int end) |
java.util.List<FragmentEntry> |
getFragmentEntries(long groupId,
long fragmentCollectionId,
int start,
int end,
OrderByComparator<FragmentEntry> orderByComparator) |
java.util.List<FragmentEntry> |
getFragmentEntriesByName(long groupId,
long fragmentCollectionId,
java.lang.String name,
int start,
int end,
OrderByComparator<FragmentEntry> orderByComparator) |
java.util.List<FragmentEntry> |
getFragmentEntriesByNameAndStatus(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status,
int start,
int end,
OrderByComparator<FragmentEntry> orderByComparator) |
java.util.List<FragmentEntry> |
getFragmentEntriesByStatus(long groupId,
long fragmentCollectionId,
int status) |
java.util.List<FragmentEntry> |
getFragmentEntriesByStatus(long groupId,
long fragmentCollectionId,
int status,
int start,
int end,
OrderByComparator<FragmentEntry> orderByComparator) |
java.util.List<FragmentEntry> |
getFragmentEntriesByType(long groupId,
long fragmentCollectionId,
int type,
int start,
int end,
OrderByComparator<FragmentEntry> orderByComparator) |
java.util.List<FragmentEntry> |
getFragmentEntriesByTypeAndStatus(long groupId,
long fragmentCollectionId,
int type,
int status) |
java.util.List<FragmentEntry> |
getFragmentEntriesByTypeAndStatus(long groupId,
long fragmentCollectionId,
int type,
int status,
int start,
int end,
OrderByComparator<FragmentEntry> orderByComparator) |
int |
getFragmentEntriesCount(long groupId,
long fragmentCollectionId) |
int |
getFragmentEntriesCountByName(long groupId,
long fragmentCollectionId,
java.lang.String name) |
int |
getFragmentEntriesCountByNameAndStatus(long groupId,
long fragmentCollectionId,
java.lang.String name,
int status) |
int |
getFragmentEntriesCountByStatus(long groupId,
long fragmentCollectionId,
int status) |
int |
getFragmentEntriesCountByType(long groupId,
long fragmentCollectionId,
int type) |
int |
getFragmentEntriesCountByTypeAndStatus(long groupId,
long fragmentCollectionId,
int type,
int status) |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
java.lang.String[] |
getTempFileNames(long groupId,
java.lang.String folderName) |
FragmentEntry |
moveFragmentEntry(long fragmentEntryId,
long fragmentCollectionId) |
FragmentEntry |
publishDraft(FragmentEntry draftFragmentEntry) |
FragmentEntry |
updateDraft(FragmentEntry draftFragmentEntry) |
FragmentEntry |
updateFragmentEntry(FragmentEntry fragmentEntry) |
FragmentEntry |
updateFragmentEntry(long fragmentEntryId,
long previewFileEntryId) |
FragmentEntry |
updateFragmentEntry(long fragmentEntryId,
java.lang.String name) |
FragmentEntry |
updateFragmentEntry(long fragmentEntryId,
java.lang.String name,
java.lang.String css,
java.lang.String html,
java.lang.String js,
boolean cacheable,
java.lang.String configuration,
int status) |
FragmentEntry |
updateFragmentEntry(long fragmentEntryId,
java.lang.String name,
java.lang.String css,
java.lang.String html,
java.lang.String js,
boolean cacheable,
java.lang.String configuration,
long previewFileEntryId,
int status) |
FragmentEntry |
updateFragmentEntry(long fragmentEntryId,
java.lang.String name,
java.lang.String css,
java.lang.String html,
java.lang.String js,
java.lang.String configuration,
int status) |
FragmentEntry |
updateFragmentEntry(long fragmentEntryId,
java.lang.String name,
java.lang.String css,
java.lang.String html,
java.lang.String js,
java.lang.String configuration,
long previewFileEntryId,
int status) |
FragmentEntry addFragmentEntry(long groupId, long fragmentCollectionId, java.lang.String fragmentEntryKey, java.lang.String name, long previewFileEntryId, int type, int status, ServiceContext serviceContext) throws PortalException
PortalExceptionFragmentEntry addFragmentEntry(long groupId, long fragmentCollectionId, java.lang.String fragmentEntryKey, java.lang.String name, java.lang.String css, java.lang.String html, java.lang.String js, boolean cacheable, java.lang.String configuration, long previewFileEntryId, int type, int status, ServiceContext serviceContext) throws PortalException
PortalExceptionFragmentEntry addFragmentEntry(long groupId, long fragmentCollectionId, java.lang.String fragmentEntryKey, java.lang.String name, java.lang.String css, java.lang.String html, java.lang.String js, java.lang.String configuration, long previewFileEntryId, int type, int status, ServiceContext serviceContext) throws PortalException
PortalExceptionFragmentEntry copyFragmentEntry(long groupId, long fragmentEntryId, long fragmentCollectionId, ServiceContext serviceContext) throws PortalException
PortalExceptionvoid deleteFragmentEntries(long[] fragmentEntriesIds)
throws PortalException
PortalExceptionFragmentEntry deleteFragmentEntry(long fragmentEntryId) throws PortalException
PortalException@Transactional(propagation=SUPPORTS, readOnly=true) FragmentEntry fetchDraft(long primaryKey)
@Transactional(propagation=SUPPORTS, readOnly=true) FragmentEntry fetchFragmentEntry(long fragmentEntryId) throws PortalException
PortalException@Transactional(propagation=SUPPORTS, readOnly=true) FragmentEntry getDraft(long primaryKey) throws PortalException
PortalException@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<java.lang.Object> getFragmentCompositionsAndFragmentEntries(long groupId, long fragmentCollectionId, int status, int start, int end, OrderByComparator<?> orderByComparator)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<java.lang.Object> getFragmentCompositionsAndFragmentEntries(long groupId, long fragmentCollectionId, java.lang.String name, int status, int start, int end, OrderByComparator<?> orderByComparator)
@Transactional(propagation=SUPPORTS, readOnly=true) int getFragmentCompositionsAndFragmentEntriesCount(long groupId, long fragmentCollectionId, int status)
@Transactional(propagation=SUPPORTS, readOnly=true) int getFragmentCompositionsAndFragmentEntriesCount(long groupId, long fragmentCollectionId, java.lang.String name, int status)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<FragmentEntry> getFragmentEntries(long fragmentCollectionId)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<FragmentEntry> getFragmentEntries(long groupId, long fragmentCollectionId, int start, int end)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<FragmentEntry> getFragmentEntries(long groupId, long fragmentCollectionId, int start, int end, OrderByComparator<FragmentEntry> orderByComparator)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<FragmentEntry> getFragmentEntriesByName(long groupId, long fragmentCollectionId, java.lang.String name, int start, int end, OrderByComparator<FragmentEntry> orderByComparator)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<FragmentEntry> getFragmentEntriesByNameAndStatus(long groupId, long fragmentCollectionId, java.lang.String name, int status, int start, int end, OrderByComparator<FragmentEntry> orderByComparator)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<FragmentEntry> getFragmentEntriesByStatus(long groupId, long fragmentCollectionId, int status)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<FragmentEntry> getFragmentEntriesByStatus(long groupId, long fragmentCollectionId, int status, int start, int end, OrderByComparator<FragmentEntry> orderByComparator)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<FragmentEntry> getFragmentEntriesByType(long groupId, long fragmentCollectionId, int type, int start, int end, OrderByComparator<FragmentEntry> orderByComparator)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<FragmentEntry> getFragmentEntriesByTypeAndStatus(long groupId, long fragmentCollectionId, int type, int status)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<FragmentEntry> getFragmentEntriesByTypeAndStatus(long groupId, long fragmentCollectionId, int type, int status, int start, int end, OrderByComparator<FragmentEntry> orderByComparator)
@Transactional(propagation=SUPPORTS, readOnly=true) int getFragmentEntriesCount(long groupId, long fragmentCollectionId)
@Transactional(propagation=SUPPORTS, readOnly=true) int getFragmentEntriesCountByName(long groupId, long fragmentCollectionId, java.lang.String name)
@Transactional(propagation=SUPPORTS, readOnly=true) int getFragmentEntriesCountByNameAndStatus(long groupId, long fragmentCollectionId, java.lang.String name, int status)
@Transactional(propagation=SUPPORTS, readOnly=true) int getFragmentEntriesCountByStatus(long groupId, long fragmentCollectionId, int status)
@Transactional(propagation=SUPPORTS, readOnly=true) int getFragmentEntriesCountByType(long groupId, long fragmentCollectionId, int type)
@Transactional(propagation=SUPPORTS, readOnly=true) int getFragmentEntriesCountByTypeAndStatus(long groupId, long fragmentCollectionId, int type, int status)
java.lang.String getOSGiServiceIdentifier()
@Transactional(propagation=SUPPORTS, readOnly=true) java.lang.String[] getTempFileNames(long groupId, java.lang.String folderName) throws PortalException
PortalExceptionFragmentEntry moveFragmentEntry(long fragmentEntryId, long fragmentCollectionId) throws PortalException
PortalExceptionFragmentEntry publishDraft(FragmentEntry draftFragmentEntry) throws PortalException
PortalExceptionFragmentEntry updateDraft(FragmentEntry draftFragmentEntry) throws PortalException
PortalExceptionFragmentEntry updateFragmentEntry(FragmentEntry fragmentEntry) throws PortalException
PortalExceptionFragmentEntry updateFragmentEntry(long fragmentEntryId, long previewFileEntryId) throws PortalException
PortalExceptionFragmentEntry updateFragmentEntry(long fragmentEntryId, java.lang.String name) throws PortalException
PortalExceptionFragmentEntry updateFragmentEntry(long fragmentEntryId, java.lang.String name, java.lang.String css, java.lang.String html, java.lang.String js, boolean cacheable, java.lang.String configuration, int status) throws PortalException
PortalExceptionFragmentEntry updateFragmentEntry(long fragmentEntryId, java.lang.String name, java.lang.String css, java.lang.String html, java.lang.String js, boolean cacheable, java.lang.String configuration, long previewFileEntryId, int status) throws PortalException
PortalExceptionFragmentEntry updateFragmentEntry(long fragmentEntryId, java.lang.String name, java.lang.String css, java.lang.String html, java.lang.String js, java.lang.String configuration, int status) throws PortalException
PortalExceptionFragmentEntry updateFragmentEntry(long fragmentEntryId, java.lang.String name, java.lang.String css, java.lang.String html, java.lang.String js, java.lang.String configuration, long previewFileEntryId, int status) throws PortalException
PortalException