Liferay 6.1.2-ce-ga3

com.liferay.portlet.mobiledevicerules.service
Interface MDRRuleGroupService

All Superinterfaces:
BaseService
All Known Implementing Classes:
MDRRuleGroupServiceBaseImpl, MDRRuleGroupServiceImpl, MDRRuleGroupServiceWrapper

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

The interface for the m d r rule group 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:
MDRRuleGroupServiceUtil, MDRRuleGroupServiceBaseImpl, MDRRuleGroupServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 MDRRuleGroup addRuleGroup(long groupId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, ServiceContext serviceContext)
           
 MDRRuleGroup copyRuleGroup(long ruleGroupId, long groupId, ServiceContext serviceContext)
           
 void deleteRuleGroup(long ruleGroupId)
           
 MDRRuleGroup fetchRuleGroup(long ruleGroupId)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 MDRRuleGroup getRuleGroup(long ruleGroupId)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 MDRRuleGroup updateRuleGroup(long ruleGroupId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, ServiceContext serviceContext)
           
 

Method Detail

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

addRuleGroup

MDRRuleGroup addRuleGroup(long groupId,
                          Map<Locale,String> nameMap,
                          Map<Locale,String> descriptionMap,
                          ServiceContext serviceContext)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

copyRuleGroup

MDRRuleGroup copyRuleGroup(long ruleGroupId,
                           long groupId,
                           ServiceContext serviceContext)
                           throws PortalException,
                                  SystemException
Throws:
PortalException
SystemException

deleteRuleGroup

void deleteRuleGroup(long ruleGroupId)
                     throws PortalException,
                            SystemException
Throws:
PortalException
SystemException

fetchRuleGroup

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MDRRuleGroup fetchRuleGroup(long ruleGroupId)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

getRuleGroup

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MDRRuleGroup getRuleGroup(long ruleGroupId)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

updateRuleGroup

MDRRuleGroup updateRuleGroup(long ruleGroupId,
                             Map<Locale,String> nameMap,
                             Map<Locale,String> descriptionMap,
                             ServiceContext serviceContext)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

Liferay 6.1.2-ce-ga3