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
The interface for the bookmarks entry remote service.
Never modify or reference this interface directly. Always use BookmarksEntryServiceUtil
to access the bookmarks entry remote service. Add custom service methods to BookmarksEntryServiceImpl
and rerun ServiceBuilder to automatically copy the method declarations to this interface.
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
,
BookmarksEntryServiceBaseImpl
,
BookmarksEntryServiceImpl
- 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