001
014
015 package com.liferay.portlet.mobiledevicerules.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.exception.PortalException;
020 import com.liferay.portal.kernel.exception.SystemException;
021 import com.liferay.portal.kernel.jsonwebservice.JSONWebService;
022 import com.liferay.portal.kernel.transaction.Isolation;
023 import com.liferay.portal.kernel.transaction.Propagation;
024 import com.liferay.portal.kernel.transaction.Transactional;
025 import com.liferay.portal.security.ac.AccessControlled;
026 import com.liferay.portal.service.BaseService;
027
028
039 @ProviderType
040 @AccessControlled
041 @JSONWebService
042 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
043 PortalException.class, SystemException.class})
044 public interface MDRRuleService extends BaseService {
045
050
051
056 public java.lang.String getBeanIdentifier();
057
058
063 public void setBeanIdentifier(java.lang.String beanIdentifier);
064
065 public com.liferay.portlet.mobiledevicerules.model.MDRRule addRule(
066 long ruleGroupId,
067 java.util.Map<java.util.Locale, java.lang.String> nameMap,
068 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
069 java.lang.String type, java.lang.String typeSettings,
070 com.liferay.portal.service.ServiceContext serviceContext)
071 throws com.liferay.portal.kernel.exception.PortalException,
072 com.liferay.portal.kernel.exception.SystemException;
073
074 public com.liferay.portlet.mobiledevicerules.model.MDRRule addRule(
075 long ruleGroupId,
076 java.util.Map<java.util.Locale, java.lang.String> nameMap,
077 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
078 java.lang.String type,
079 com.liferay.portal.kernel.util.UnicodeProperties typeSettings,
080 com.liferay.portal.service.ServiceContext serviceContext)
081 throws com.liferay.portal.kernel.exception.PortalException,
082 com.liferay.portal.kernel.exception.SystemException;
083
084 public void deleteRule(long ruleId)
085 throws com.liferay.portal.kernel.exception.PortalException,
086 com.liferay.portal.kernel.exception.SystemException;
087
088 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
089 public com.liferay.portlet.mobiledevicerules.model.MDRRule fetchRule(
090 long ruleId)
091 throws com.liferay.portal.kernel.exception.PortalException,
092 com.liferay.portal.kernel.exception.SystemException;
093
094 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
095 public com.liferay.portlet.mobiledevicerules.model.MDRRule getRule(
096 long ruleId)
097 throws com.liferay.portal.kernel.exception.PortalException,
098 com.liferay.portal.kernel.exception.SystemException;
099
100 public com.liferay.portlet.mobiledevicerules.model.MDRRule updateRule(
101 long ruleId, java.util.Map<java.util.Locale, java.lang.String> nameMap,
102 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
103 java.lang.String type, java.lang.String typeSettings,
104 com.liferay.portal.service.ServiceContext serviceContext)
105 throws com.liferay.portal.kernel.exception.PortalException,
106 com.liferay.portal.kernel.exception.SystemException;
107
108 public com.liferay.portlet.mobiledevicerules.model.MDRRule updateRule(
109 long ruleId, java.util.Map<java.util.Locale, java.lang.String> nameMap,
110 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
111 java.lang.String type,
112 com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties,
113 com.liferay.portal.service.ServiceContext serviceContext)
114 throws com.liferay.portal.kernel.exception.PortalException,
115 com.liferay.portal.kernel.exception.SystemException;
116 }