@ProviderType @Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface MDRActionLocalService extends BaseLocalService, PersistedModelLocalService
MDRActionLocalServiceUtil| Modifier and Type | Method and Description |
|---|---|
MDRAction |
addAction(long ruleGroupInstanceId,
java.util.Map<java.util.Locale,java.lang.String> nameMap,
java.util.Map<java.util.Locale,java.lang.String> descriptionMap,
java.lang.String type,
java.lang.String typeSettings,
ServiceContext serviceContext) |
MDRAction |
addAction(long ruleGroupInstanceId,
java.util.Map<java.util.Locale,java.lang.String> nameMap,
java.util.Map<java.util.Locale,java.lang.String> descriptionMap,
java.lang.String type,
UnicodeProperties typeSettingsUnicodeProperties,
ServiceContext serviceContext) |
MDRAction |
addMDRAction(MDRAction mdrAction)
Adds the mdr action to the database.
|
MDRAction |
createMDRAction(long actionId)
Creates a new mdr action with the primary key.
|
PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
void |
deleteAction(long actionId) |
void |
deleteAction(MDRAction action) |
void |
deleteActions(long ruleGroupInstanceId) |
MDRAction |
deleteMDRAction(long actionId)
Deletes the mdr action with the primary key from the database.
|
MDRAction |
deleteMDRAction(MDRAction mdrAction)
Deletes the mdr action from the database.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
<T> T |
dslQuery(DSLQuery dslQuery) |
DynamicQuery |
dynamicQuery() |
<T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
<T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
MDRAction |
fetchAction(long actionId) |
MDRAction |
fetchMDRAction(long actionId) |
MDRAction |
fetchMDRActionByUuidAndGroupId(java.lang.String uuid,
long groupId)
Returns the mdr action matching the UUID and group.
|
MDRAction |
getAction(long actionId) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
java.util.List<MDRAction> |
getActions(long ruleGroupInstanceId) |
java.util.List<MDRAction> |
getActions(long ruleGroupInstanceId,
int start,
int end) |
java.util.List<MDRAction> |
getActions(long ruleGroupInstanceId,
int start,
int end,
OrderByComparator<MDRAction> orderByComparator) |
int |
getActionsCount(long ruleGroupInstanceId) |
ExportActionableDynamicQuery |
getExportActionableDynamicQuery(PortletDataContext portletDataContext) |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
MDRAction |
getMDRAction(long actionId)
Returns the mdr action with the primary key.
|
MDRAction |
getMDRActionByUuidAndGroupId(java.lang.String uuid,
long groupId)
Returns the mdr action matching the UUID and group.
|
java.util.List<MDRAction> |
getMDRActions(int start,
int end)
Returns a range of all the mdr actions.
|
java.util.List<MDRAction> |
getMDRActionsByUuidAndCompanyId(java.lang.String uuid,
long companyId)
Returns all the mdr actions matching the UUID and company.
|
java.util.List<MDRAction> |
getMDRActionsByUuidAndCompanyId(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator<MDRAction> orderByComparator)
Returns a range of mdr actions matching the UUID and company.
|
int |
getMDRActionsCount()
Returns the number of mdr actions.
|
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
MDRAction |
updateAction(long actionId,
java.util.Map<java.util.Locale,java.lang.String> nameMap,
java.util.Map<java.util.Locale,java.lang.String> descriptionMap,
java.lang.String type,
java.lang.String typeSettings,
ServiceContext serviceContext) |
MDRAction |
updateAction(long actionId,
java.util.Map<java.util.Locale,java.lang.String> nameMap,
java.util.Map<java.util.Locale,java.lang.String> descriptionMap,
java.lang.String type,
UnicodeProperties typeSettingsUnicodeProperties,
ServiceContext serviceContext) |
MDRAction |
updateMDRAction(MDRAction mdrAction)
Updates the mdr action in the database or adds it if it does not yet exist.
|
getBasePersistenceMDRAction addAction(long ruleGroupInstanceId, java.util.Map<java.util.Locale,java.lang.String> nameMap, java.util.Map<java.util.Locale,java.lang.String> descriptionMap, java.lang.String type, java.lang.String typeSettings, ServiceContext serviceContext) throws PortalException
PortalExceptionMDRAction addAction(long ruleGroupInstanceId, java.util.Map<java.util.Locale,java.lang.String> nameMap, java.util.Map<java.util.Locale,java.lang.String> descriptionMap, java.lang.String type, UnicodeProperties typeSettingsUnicodeProperties, ServiceContext serviceContext) throws PortalException
PortalException@Indexable(type=REINDEX) MDRAction addMDRAction(MDRAction mdrAction)
mdrAction - the mdr action@Transactional(enabled=false) MDRAction createMDRAction(long actionId)
actionId - the primary key for the new mdr actionPersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
createPersistedModel in interface PersistedModelLocalServicePortalExceptionvoid deleteAction(long actionId)
@SystemEvent(type=1) void deleteAction(MDRAction action)
void deleteActions(long ruleGroupInstanceId)
@Indexable(type=DELETE) MDRAction deleteMDRAction(long actionId) throws PortalException
actionId - the primary key of the mdr actionPortalException - if a mdr action with the primary key could not be found@Indexable(type=DELETE) MDRAction deleteMDRAction(MDRAction mdrAction)
mdrAction - the mdr actionPersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface PersistedModelLocalServicePortalException@Transactional(propagation=SUPPORTS, readOnly=true) <T> T dslQuery(DSLQuery dslQuery)
@Transactional(propagation=SUPPORTS, readOnly=true) DynamicQuery dynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery - the dynamic query@Transactional(propagation=SUPPORTS, readOnly=true) <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.mobile.device.rules.model.impl.MDRActionModelImpl.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.mobile.device.rules.model.impl.MDRActionModelImpl.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)@Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQuery - the dynamic query@Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQuery - the dynamic queryprojection - the projection to apply to the query@Transactional(propagation=SUPPORTS, readOnly=true) MDRAction fetchAction(long actionId)
@Transactional(propagation=SUPPORTS, readOnly=true) MDRAction fetchMDRAction(long actionId)
@Transactional(propagation=SUPPORTS, readOnly=true) MDRAction fetchMDRActionByUuidAndGroupId(java.lang.String uuid, long groupId)
uuid - the mdr action's UUIDgroupId - the primary key of the groupnull if a matching mdr action could not be found@Transactional(propagation=SUPPORTS, readOnly=true) MDRAction getAction(long actionId) throws PortalException
PortalException@Transactional(propagation=SUPPORTS, readOnly=true) ActionableDynamicQuery getActionableDynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<MDRAction> getActions(long ruleGroupInstanceId)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<MDRAction> getActions(long ruleGroupInstanceId, int start, int end)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<MDRAction> getActions(long ruleGroupInstanceId, int start, int end, OrderByComparator<MDRAction> orderByComparator)
@Transactional(propagation=SUPPORTS, readOnly=true) int getActionsCount(long ruleGroupInstanceId)
@Transactional(propagation=SUPPORTS, readOnly=true) ExportActionableDynamicQuery getExportActionableDynamicQuery(PortletDataContext portletDataContext)
@Transactional(propagation=SUPPORTS, readOnly=true) IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) MDRAction getMDRAction(long actionId) throws PortalException
actionId - the primary key of the mdr actionPortalException - if a mdr action with the primary key could not be found@Transactional(propagation=SUPPORTS, readOnly=true) MDRAction getMDRActionByUuidAndGroupId(java.lang.String uuid, long groupId) throws PortalException
uuid - the mdr action's UUIDgroupId - the primary key of the groupPortalException - if a matching mdr action could not be found@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<MDRAction> getMDRActions(int start, int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.mobile.device.rules.model.impl.MDRActionModelImpl.
start - the lower bound of the range of mdr actionsend - the upper bound of the range of mdr actions (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<MDRAction> getMDRActionsByUuidAndCompanyId(java.lang.String uuid, long companyId)
uuid - the UUID of the mdr actionscompanyId - the primary key of the company@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<MDRAction> getMDRActionsByUuidAndCompanyId(java.lang.String uuid, long companyId, int start, int end, OrderByComparator<MDRAction> orderByComparator)
uuid - the UUID of the mdr actionscompanyId - the primary key of the companystart - the lower bound of the range of mdr actionsend - the upper bound of the range of mdr actions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)@Transactional(propagation=SUPPORTS, readOnly=true) int getMDRActionsCount()
java.lang.String getOSGiServiceIdentifier()
@Transactional(propagation=SUPPORTS, readOnly=true) PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface PersistedModelLocalServicePortalExceptionMDRAction updateAction(long actionId, java.util.Map<java.util.Locale,java.lang.String> nameMap, java.util.Map<java.util.Locale,java.lang.String> descriptionMap, java.lang.String type, java.lang.String typeSettings, ServiceContext serviceContext) throws PortalException
PortalExceptionMDRAction updateAction(long actionId, java.util.Map<java.util.Locale,java.lang.String> nameMap, java.util.Map<java.util.Locale,java.lang.String> descriptionMap, java.lang.String type, UnicodeProperties typeSettingsUnicodeProperties, ServiceContext serviceContext) throws PortalException
PortalException@Indexable(type=REINDEX) MDRAction updateMDRAction(MDRAction mdrAction)
mdrAction - the mdr action