Liferay 6.1.10-ee-ga1

com.liferay.portlet.dynamicdatalists.service
Interface DDLRecordSetService

All Known Implementing Classes:
DDLRecordSetServiceWrapper

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

The interface for the d d l record set remote service.

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:
DDLRecordSetServiceUtil, com.liferay.portlet.dynamicdatalists.service.base.DDLRecordSetServiceBaseImpl, com.liferay.portlet.dynamicdatalists.service.impl.DDLRecordSetServiceImpl

Method Summary
 DDLRecordSet addRecordSet(long groupId, long ddmStructureId, String recordSetKey, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int minDisplayRows, int scope, ServiceContext serviceContext)
           
 void deleteRecordSet(long recordSetId)
           
 DDLRecordSet getRecordSet(long recordSetId)
           
 DDLRecordSet updateMinDisplayRows(long recordSetId, int minDisplayRows, ServiceContext serviceContext)
           
 DDLRecordSet updateRecordSet(long recordSetId, long ddmStructureId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int minDisplayRows, ServiceContext serviceContext)
           
 DDLRecordSet updateRecordSet(long groupId, long ddmStructureId, String recordSetKey, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int minDisplayRows, ServiceContext serviceContext)
           
 

Method Detail

addRecordSet

DDLRecordSet addRecordSet(long groupId,
                          long ddmStructureId,
                          String recordSetKey,
                          Map<Locale,String> nameMap,
                          Map<Locale,String> descriptionMap,
                          int minDisplayRows,
                          int scope,
                          ServiceContext serviceContext)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

deleteRecordSet

void deleteRecordSet(long recordSetId)
                     throws PortalException,
                            SystemException
Throws:
PortalException
SystemException

getRecordSet

@Transactional(propagation=SUPPORTS,
               readOnly=true)
DDLRecordSet getRecordSet(long recordSetId)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

updateMinDisplayRows

DDLRecordSet updateMinDisplayRows(long recordSetId,
                                  int minDisplayRows,
                                  ServiceContext serviceContext)
                                  throws PortalException,
                                         SystemException
Throws:
PortalException
SystemException

updateRecordSet

DDLRecordSet updateRecordSet(long recordSetId,
                             long ddmStructureId,
                             Map<Locale,String> nameMap,
                             Map<Locale,String> descriptionMap,
                             int minDisplayRows,
                             ServiceContext serviceContext)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

updateRecordSet

DDLRecordSet updateRecordSet(long groupId,
                             long ddmStructureId,
                             String recordSetKey,
                             Map<Locale,String> nameMap,
                             Map<Locale,String> descriptionMap,
                             int minDisplayRows,
                             ServiceContext serviceContext)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

Liferay 6.1.10-ee-ga1