com.liferay.portlet.mobiledevicerules.service
Interface MDRActionService
- All Known Implementing Classes:
- 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
,
com.liferay.portlet.mobiledevicerules.service.base.MDRActionServiceBaseImpl
,
com.liferay.portlet.mobiledevicerules.service.impl.MDRActionServiceImpl
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)
|
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