Liferay 6.0.5

com.liferay.portlet.journal.service
Interface JournalFeedService

All Known Implementing Classes:
JournalFeedServiceBaseImpl, JournalFeedServiceImpl, JournalFeedServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface JournalFeedService

The interface for the journal feed remote service.

Never modify or reference this interface directly. Always use JournalFeedServiceUtil to access the journal feed remote service. Add custom service methods to JournalFeedServiceImpl 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:
JournalFeedServiceUtil, JournalFeedServiceBaseImpl, JournalFeedServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 JournalFeed addFeed(long groupId, String feedId, boolean autoFeedId, String name, String description, String type, String structureId, String templateId, String rendererTemplateId, int delta, String orderByCol, String orderByType, String targetLayoutFriendlyUrl, String targetPortletId, String contentField, String feedType, double feedVersion, ServiceContext serviceContext)
           
 void deleteFeed(long groupId, long feedId)
           
 void deleteFeed(long groupId, String feedId)
           
 JournalFeed getFeed(long groupId, long feedId)
           
 JournalFeed getFeed(long groupId, String feedId)
           
 JournalFeed updateFeed(long groupId, String feedId, String name, String description, String type, String structureId, String templateId, String rendererTemplateId, int delta, String orderByCol, String orderByType, String targetLayoutFriendlyUrl, String targetPortletId, String contentField, String feedType, double feedVersion, ServiceContext serviceContext)
           
 

Method Detail

addFeed

JournalFeed addFeed(long groupId,
                    String feedId,
                    boolean autoFeedId,
                    String name,
                    String description,
                    String type,
                    String structureId,
                    String templateId,
                    String rendererTemplateId,
                    int delta,
                    String orderByCol,
                    String orderByType,
                    String targetLayoutFriendlyUrl,
                    String targetPortletId,
                    String contentField,
                    String feedType,
                    double feedVersion,
                    ServiceContext serviceContext)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

deleteFeed

void deleteFeed(long groupId,
                long feedId)
                throws PortalException,
                       SystemException
Throws:
PortalException
SystemException

deleteFeed

void deleteFeed(long groupId,
                String feedId)
                throws PortalException,
                       SystemException
Throws:
PortalException
SystemException

getFeed

@Transactional(propagation=SUPPORTS,
               readOnly=true)
JournalFeed getFeed(long groupId,
                                                             long feedId)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

getFeed

@Transactional(propagation=SUPPORTS,
               readOnly=true)
JournalFeed getFeed(long groupId,
                                                             String feedId)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

updateFeed

JournalFeed updateFeed(long groupId,
                       String feedId,
                       String name,
                       String description,
                       String type,
                       String structureId,
                       String templateId,
                       String rendererTemplateId,
                       int delta,
                       String orderByCol,
                       String orderByType,
                       String targetLayoutFriendlyUrl,
                       String targetPortletId,
                       String contentField,
                       String feedType,
                       double feedVersion,
                       ServiceContext serviceContext)
                       throws PortalException,
                              SystemException
Throws:
PortalException
SystemException

Liferay 6.0.5