com.liferay.portlet.bookmarks.service
Interface BookmarksEntryService
- All Known Implementing Classes:
- BookmarksEntryServiceBaseImpl, BookmarksEntryServiceImpl, BookmarksEntryServiceWrapper
@Transactional(isolation=PORTAL,
rollbackFor={PortalException.class,SystemException.class})
public interface BookmarksEntryService
This interface defines the service. The default implementation is
BookmarksEntryServiceImpl.
Modify methods in that class and rerun ServiceBuilder to populate this class
and all other generated classes.
This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.
- See Also:
BookmarksEntryServiceUtil- ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.
|
Method Summary |
BookmarksEntry |
addEntry(long groupId,
long folderId,
String name,
String url,
String comments,
ServiceContext serviceContext)
|
void |
deleteEntry(long entryId)
|
BookmarksEntry |
getEntry(long entryId)
|
BookmarksEntry |
openEntry(long entryId)
|
BookmarksEntry |
updateEntry(long entryId,
long groupId,
long folderId,
String name,
String url,
String comments,
ServiceContext serviceContext)
|
addEntry
BookmarksEntry addEntry(long groupId,
long folderId,
String name,
String url,
String comments,
ServiceContext serviceContext)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
deleteEntry
void deleteEntry(long entryId)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
getEntry
@Transactional(propagation=SUPPORTS,
readOnly=true)
BookmarksEntry getEntry(long entryId)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
openEntry
BookmarksEntry openEntry(long entryId)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
updateEntry
BookmarksEntry updateEntry(long entryId,
long groupId,
long folderId,
String name,
String url,
String comments,
ServiceContext serviceContext)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException