Liferay 6.1.10-ee-ga1

com.liferay.portlet.mobiledevicerules.service
Interface MDRActionService

All Known Implementing Classes:
MDRActionServiceBaseImpl, MDRActionServiceImpl, MDRActionServiceWrapper

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

The interface for the m d r action 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:
MDRActionServiceUtil, MDRActionServiceBaseImpl, MDRActionServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 MDRAction addAction(long ruleGroupInstanceId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, String type, String typeSettings, ServiceContext serviceContext)
           
 MDRAction addAction(long ruleGroupInstanceId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, String type, UnicodeProperties typeSettingsProperties, ServiceContext serviceContext)
           
 void deleteAction(long actionId)
           
 MDRAction fetchAction(long actionId)
           
 MDRAction getAction(long actionId)
           
 MDRAction updateAction(long actionId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, String type, String typeSettings, ServiceContext serviceContext)
           
 MDRAction updateAction(long actionId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, String type, UnicodeProperties typeSettingsProperties, ServiceContext serviceContext)
           
 

Method Detail

addAction

MDRAction addAction(long ruleGroupInstanceId,
                    Map<Locale,String> nameMap,
                    Map<Locale,String> descriptionMap,
                    String type,
                    String typeSettings,
                    ServiceContext serviceContext)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

addAction

MDRAction addAction(long ruleGroupInstanceId,
                    Map<Locale,String> nameMap,
                    Map<Locale,String> descriptionMap,
                    String type,
                    UnicodeProperties typeSettingsProperties,
                    ServiceContext serviceContext)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

deleteAction

void deleteAction(long actionId)
                  throws PortalException,
                         SystemException
Throws:
PortalException
SystemException

fetchAction

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MDRAction fetchAction(long actionId)
                      throws PortalException,
                             SystemException
Throws:
PortalException
SystemException

getAction

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MDRAction getAction(long actionId)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

updateAction

MDRAction updateAction(long actionId,
                       Map<Locale,String> nameMap,
                       Map<Locale,String> descriptionMap,
                       String type,
                       String typeSettings,
                       ServiceContext serviceContext)
                       throws PortalException,
                              SystemException
Throws:
PortalException
SystemException

updateAction

MDRAction updateAction(long actionId,
                       Map<Locale,String> nameMap,
                       Map<Locale,String> descriptionMap,
                       String type,
                       UnicodeProperties typeSettingsProperties,
                       ServiceContext serviceContext)
                       throws PortalException,
                              SystemException
Throws:
PortalException
SystemException

Liferay 6.1.10-ee-ga1