Liferay 6.1.2-ce-ga3

com.liferay.portlet.mobiledevicerules.service.persistence
Class MDRRuleUtil

java.lang.Object
  extended by com.liferay.portlet.mobiledevicerules.service.persistence.MDRRuleUtil

public class MDRRuleUtil
extends Object

The persistence utility for the m d r rule service. This utility wraps MDRRulePersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Caching information and settings can be found in portal.properties

See Also:
MDRRulePersistence, MDRRulePersistenceImpl

Constructor Summary
MDRRuleUtil()
           
 
Method Summary
static void cacheResult(List<MDRRule> mdrRules)
          Caches the m d r rules in the entity cache if it is enabled.
static void cacheResult(MDRRule mdrRule)
          Caches the m d r rule in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(MDRRule mdrRule)
           
static int countAll()
          Returns the number of m d r rules.
static int countByRuleGroupId(long ruleGroupId)
          Returns the number of m d r rules where ruleGroupId = ?.
static int countByUUID_G(String uuid, long groupId)
          Returns the number of m d r rules where uuid = ? and groupId = ?.
static int countByUuid(String uuid)
          Returns the number of m d r rules where uuid = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static MDRRule create(long ruleId)
          Creates a new m d r rule with the primary key.
static MDRRule fetchByPrimaryKey(long ruleId)
          Returns the m d r rule with the primary key or returns null if it could not be found.
static MDRRule fetchByRuleGroupId_First(long ruleGroupId, OrderByComparator orderByComparator)
          Returns the first m d r rule in the ordered set where ruleGroupId = ?.
static MDRRule fetchByRuleGroupId_Last(long ruleGroupId, OrderByComparator orderByComparator)
          Returns the last m d r rule in the ordered set where ruleGroupId = ?.
static MDRRule fetchByUuid_First(String uuid, OrderByComparator orderByComparator)
          Returns the first m d r rule in the ordered set where uuid = ?.
static MDRRule fetchByUUID_G(String uuid, long groupId)
          Returns the m d r rule where uuid = ? and groupId = ? or returns null if it could not be found.
static MDRRule fetchByUUID_G(String uuid, long groupId, boolean retrieveFromCache)
          Returns the m d r rule where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
static MDRRule fetchByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Returns the last m d r rule in the ordered set where uuid = ?.
static List<MDRRule> findAll()
          Returns all the m d r rules.
static List<MDRRule> findAll(int start, int end)
          Returns a range of all the m d r rules.
static List<MDRRule> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the m d r rules.
static MDRRule findByPrimaryKey(long ruleId)
          Returns the m d r rule with the primary key or throws a NoSuchRuleException if it could not be found.
static MDRRule findByRuleGroupId_First(long ruleGroupId, OrderByComparator orderByComparator)
          Returns the first m d r rule in the ordered set where ruleGroupId = ?.
static MDRRule findByRuleGroupId_Last(long ruleGroupId, OrderByComparator orderByComparator)
          Returns the last m d r rule in the ordered set where ruleGroupId = ?.
static MDRRule[] findByRuleGroupId_PrevAndNext(long ruleId, long ruleGroupId, OrderByComparator orderByComparator)
          Returns the m d r rules before and after the current m d r rule in the ordered set where ruleGroupId = ?.
static List<MDRRule> findByRuleGroupId(long ruleGroupId)
          Returns all the m d r rules where ruleGroupId = ?.
static List<MDRRule> findByRuleGroupId(long ruleGroupId, int start, int end)
          Returns a range of all the m d r rules where ruleGroupId = ?.
static List<MDRRule> findByRuleGroupId(long ruleGroupId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the m d r rules where ruleGroupId = ?.
static MDRRule findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Returns the first m d r rule in the ordered set where uuid = ?.
static MDRRule findByUUID_G(String uuid, long groupId)
          Returns the m d r rule where uuid = ? and groupId = ? or throws a NoSuchRuleException if it could not be found.
static MDRRule findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Returns the last m d r rule in the ordered set where uuid = ?.
static MDRRule[] findByUuid_PrevAndNext(long ruleId, String uuid, OrderByComparator orderByComparator)
          Returns the m d r rules before and after the current m d r rule in the ordered set where uuid = ?.
static List<MDRRule> findByUuid(String uuid)
          Returns all the m d r rules where uuid = ?.
static List<MDRRule> findByUuid(String uuid, int start, int end)
          Returns a range of all the m d r rules where uuid = ?.
static List<MDRRule> findByUuid(String uuid, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the m d r rules where uuid = ?.
static List<MDRRule> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<MDRRule> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<MDRRule> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static MDRRulePersistence getPersistence()
           
static MDRRule remove(long ruleId)
          Removes the m d r rule with the primary key from the database.
static void removeAll()
          Removes all the m d r rules from the database.
static void removeByRuleGroupId(long ruleGroupId)
          Removes all the m d r rules where ruleGroupId = ? from the database.
static MDRRule removeByUUID_G(String uuid, long groupId)
          Removes the m d r rule where uuid = ? and groupId = ? from the database.
static void removeByUuid(String uuid)
          Removes all the m d r rules where uuid = ? from the database.
 void setPersistence(MDRRulePersistence persistence)
          Deprecated.  
static MDRRule update(MDRRule mdrRule, boolean merge)
           
static MDRRule update(MDRRule mdrRule, boolean merge, ServiceContext serviceContext)
           
static MDRRule updateImpl(MDRRule mdrRule, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MDRRuleUtil

public MDRRuleUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(MDRRule mdrRule)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public long countWithDynamicQuery(DynamicQuery dynamicQuery)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<MDRRule> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                          throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<MDRRule> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                 int start,
                                                 int end)
                                          throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<MDRRule> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                 int start,
                                                 int end,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

update

public static MDRRule update(MDRRule mdrRule,
                             boolean merge)
                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static MDRRule update(MDRRule mdrRule,
                             boolean merge,
                             ServiceContext serviceContext)
                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(MDRRule mdrRule)
Caches the m d r rule in the entity cache if it is enabled.

Parameters:
mdrRule - the m d r rule

cacheResult

public static void cacheResult(List<MDRRule> mdrRules)
Caches the m d r rules in the entity cache if it is enabled.

Parameters:
mdrRules - the m d r rules

create

public static MDRRule create(long ruleId)
Creates a new m d r rule with the primary key. Does not add the m d r rule to the database.

Parameters:
ruleId - the primary key for the new m d r rule
Returns:
the new m d r rule

remove

public static MDRRule remove(long ruleId)
                      throws SystemException,
                             NoSuchRuleException
Removes the m d r rule with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
ruleId - the primary key of the m d r rule
Returns:
the m d r rule that was removed
Throws:
NoSuchRuleException - if a m d r rule with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static MDRRule updateImpl(MDRRule mdrRule,
                                 boolean merge)
                          throws SystemException
Throws:
SystemException

findByPrimaryKey

public static MDRRule findByPrimaryKey(long ruleId)
                                throws SystemException,
                                       NoSuchRuleException
Returns the m d r rule with the primary key or throws a NoSuchRuleException if it could not be found.

Parameters:
ruleId - the primary key of the m d r rule
Returns:
the m d r rule
Throws:
NoSuchRuleException - if a m d r rule with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static MDRRule fetchByPrimaryKey(long ruleId)
                                 throws SystemException
Returns the m d r rule with the primary key or returns null if it could not be found.

Parameters:
ruleId - the primary key of the m d r rule
Returns:
the m d r rule, or null if a m d r rule with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<MDRRule> findByUuid(String uuid)
                                throws SystemException
Returns all the m d r rules where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the matching m d r rules
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<MDRRule> findByUuid(String uuid,
                                       int start,
                                       int end)
                                throws SystemException
Returns a range of all the m d r rules where uuid = ?.

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 QueryUtil.ALL_POS will return the full result set.

Parameters:
uuid - the uuid
start - the lower bound of the range of m d r rules
end - the upper bound of the range of m d r rules (not inclusive)
Returns:
the range of matching m d r rules
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<MDRRule> findByUuid(String uuid,
                                       int start,
                                       int end,
                                       OrderByComparator orderByComparator)
                                throws SystemException
Returns an ordered range of all the m d r rules where uuid = ?.

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 QueryUtil.ALL_POS will return the full result set.

Parameters:
uuid - the uuid
start - the lower bound of the range of m d r rules
end - the upper bound of the range of m d r rules (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching m d r rules
Throws:
SystemException - if a system exception occurred

findByUuid_First

public static MDRRule findByUuid_First(String uuid,
                                       OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchRuleException
Returns the first m d r rule in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching m d r rule
Throws:
NoSuchRuleException - if a matching m d r rule could not be found
SystemException - if a system exception occurred

fetchByUuid_First

public static MDRRule fetchByUuid_First(String uuid,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Returns the first m d r rule in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching m d r rule, or null if a matching m d r rule could not be found
Throws:
SystemException - if a system exception occurred

findByUuid_Last

public static MDRRule findByUuid_Last(String uuid,
                                      OrderByComparator orderByComparator)
                               throws SystemException,
                                      NoSuchRuleException
Returns the last m d r rule in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching m d r rule
Throws:
NoSuchRuleException - if a matching m d r rule could not be found
SystemException - if a system exception occurred

fetchByUuid_Last

public static MDRRule fetchByUuid_Last(String uuid,
                                       OrderByComparator orderByComparator)
                                throws SystemException
Returns the last m d r rule in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching m d r rule, or null if a matching m d r rule could not be found
Throws:
SystemException - if a system exception occurred

findByUuid_PrevAndNext

public static MDRRule[] findByUuid_PrevAndNext(long ruleId,
                                               String uuid,
                                               OrderByComparator orderByComparator)
                                        throws SystemException,
                                               NoSuchRuleException
Returns the m d r rules before and after the current m d r rule in the ordered set where uuid = ?.

Parameters:
ruleId - the primary key of the current m d r rule
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next m d r rule
Throws:
NoSuchRuleException - if a m d r rule with the primary key could not be found
SystemException - if a system exception occurred

findByUUID_G

public static MDRRule findByUUID_G(String uuid,
                                   long groupId)
                            throws SystemException,
                                   NoSuchRuleException
Returns the m d r rule where uuid = ? and groupId = ? or throws a NoSuchRuleException if it could not be found.

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the matching m d r rule
Throws:
NoSuchRuleException - if a matching m d r rule could not be found
SystemException - if a system exception occurred

fetchByUUID_G

public static MDRRule fetchByUUID_G(String uuid,
                                    long groupId)
                             throws SystemException
Returns the m d r rule where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the matching m d r rule, or null if a matching m d r rule could not be found
Throws:
SystemException - if a system exception occurred

fetchByUUID_G

public static MDRRule fetchByUUID_G(String uuid,
                                    long groupId,
                                    boolean retrieveFromCache)
                             throws SystemException
Returns the m d r rule where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
uuid - the uuid
groupId - the group ID
retrieveFromCache - whether to use the finder cache
Returns:
the matching m d r rule, or null if a matching m d r rule could not be found
Throws:
SystemException - if a system exception occurred

findByRuleGroupId

public static List<MDRRule> findByRuleGroupId(long ruleGroupId)
                                       throws SystemException
Returns all the m d r rules where ruleGroupId = ?.

Parameters:
ruleGroupId - the rule group ID
Returns:
the matching m d r rules
Throws:
SystemException - if a system exception occurred

findByRuleGroupId

public static List<MDRRule> findByRuleGroupId(long ruleGroupId,
                                              int start,
                                              int end)
                                       throws SystemException
Returns a range of all the m d r rules where ruleGroupId = ?.

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 QueryUtil.ALL_POS will return the full result set.

Parameters:
ruleGroupId - the rule group ID
start - the lower bound of the range of m d r rules
end - the upper bound of the range of m d r rules (not inclusive)
Returns:
the range of matching m d r rules
Throws:
SystemException - if a system exception occurred

findByRuleGroupId

public static List<MDRRule> findByRuleGroupId(long ruleGroupId,
                                              int start,
                                              int end,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Returns an ordered range of all the m d r rules where ruleGroupId = ?.

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 QueryUtil.ALL_POS will return the full result set.

Parameters:
ruleGroupId - the rule group ID
start - the lower bound of the range of m d r rules
end - the upper bound of the range of m d r rules (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching m d r rules
Throws:
SystemException - if a system exception occurred

findByRuleGroupId_First

public static MDRRule findByRuleGroupId_First(long ruleGroupId,
                                              OrderByComparator orderByComparator)
                                       throws SystemException,
                                              NoSuchRuleException
Returns the first m d r rule in the ordered set where ruleGroupId = ?.

Parameters:
ruleGroupId - the rule group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching m d r rule
Throws:
NoSuchRuleException - if a matching m d r rule could not be found
SystemException - if a system exception occurred

fetchByRuleGroupId_First

public static MDRRule fetchByRuleGroupId_First(long ruleGroupId,
                                               OrderByComparator orderByComparator)
                                        throws SystemException
Returns the first m d r rule in the ordered set where ruleGroupId = ?.

Parameters:
ruleGroupId - the rule group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching m d r rule, or null if a matching m d r rule could not be found
Throws:
SystemException - if a system exception occurred

findByRuleGroupId_Last

public static MDRRule findByRuleGroupId_Last(long ruleGroupId,
                                             OrderByComparator orderByComparator)
                                      throws SystemException,
                                             NoSuchRuleException
Returns the last m d r rule in the ordered set where ruleGroupId = ?.

Parameters:
ruleGroupId - the rule group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching m d r rule
Throws:
NoSuchRuleException - if a matching m d r rule could not be found
SystemException - if a system exception occurred

fetchByRuleGroupId_Last

public static MDRRule fetchByRuleGroupId_Last(long ruleGroupId,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Returns the last m d r rule in the ordered set where ruleGroupId = ?.

Parameters:
ruleGroupId - the rule group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching m d r rule, or null if a matching m d r rule could not be found
Throws:
SystemException - if a system exception occurred

findByRuleGroupId_PrevAndNext

public static MDRRule[] findByRuleGroupId_PrevAndNext(long ruleId,
                                                      long ruleGroupId,
                                                      OrderByComparator orderByComparator)
                                               throws SystemException,
                                                      NoSuchRuleException
Returns the m d r rules before and after the current m d r rule in the ordered set where ruleGroupId = ?.

Parameters:
ruleId - the primary key of the current m d r rule
ruleGroupId - the rule group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next m d r rule
Throws:
NoSuchRuleException - if a m d r rule with the primary key could not be found
SystemException - if a system exception occurred

findAll

public static List<MDRRule> findAll()
                             throws SystemException
Returns all the m d r rules.

Returns:
the m d r rules
Throws:
SystemException - if a system exception occurred

findAll

public static List<MDRRule> findAll(int start,
                                    int end)
                             throws SystemException
Returns a range of all the m d r rules.

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 QueryUtil.ALL_POS will return the full result set.

Parameters:
start - the lower bound of the range of m d r rules
end - the upper bound of the range of m d r rules (not inclusive)
Returns:
the range of m d r rules
Throws:
SystemException - if a system exception occurred

findAll

public static List<MDRRule> findAll(int start,
                                    int end,
                                    OrderByComparator orderByComparator)
                             throws SystemException
Returns an ordered range of all the m d r rules.

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 QueryUtil.ALL_POS will return the full result set.

Parameters:
start - the lower bound of the range of m d r rules
end - the upper bound of the range of m d r rules (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of m d r rules
Throws:
SystemException - if a system exception occurred

removeByUuid

public static void removeByUuid(String uuid)
                         throws SystemException
Removes all the m d r rules where uuid = ? from the database.

Parameters:
uuid - the uuid
Throws:
SystemException - if a system exception occurred

removeByUUID_G

public static MDRRule removeByUUID_G(String uuid,
                                     long groupId)
                              throws SystemException,
                                     NoSuchRuleException
Removes the m d r rule where uuid = ? and groupId = ? from the database.

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the m d r rule that was removed
Throws:
SystemException - if a system exception occurred
NoSuchRuleException

removeByRuleGroupId

public static void removeByRuleGroupId(long ruleGroupId)
                                throws SystemException
Removes all the m d r rules where ruleGroupId = ? from the database.

Parameters:
ruleGroupId - the rule group ID
Throws:
SystemException - if a system exception occurred

removeAll

public static void removeAll()
                      throws SystemException
Removes all the m d r rules from the database.

Throws:
SystemException - if a system exception occurred

countByUuid

public static int countByUuid(String uuid)
                       throws SystemException
Returns the number of m d r rules where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the number of matching m d r rules
Throws:
SystemException - if a system exception occurred

countByUUID_G

public static int countByUUID_G(String uuid,
                                long groupId)
                         throws SystemException
Returns the number of m d r rules where uuid = ? and groupId = ?.

Parameters:
uuid - the uuid
groupId - the group ID
Returns:
the number of matching m d r rules
Throws:
SystemException - if a system exception occurred

countByRuleGroupId

public static int countByRuleGroupId(long ruleGroupId)
                              throws SystemException
Returns the number of m d r rules where ruleGroupId = ?.

Parameters:
ruleGroupId - the rule group ID
Returns:
the number of matching m d r rules
Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Returns the number of m d r rules.

Returns:
the number of m d r rules
Throws:
SystemException - if a system exception occurred

getPersistence

public static MDRRulePersistence getPersistence()

setPersistence

public void setPersistence(MDRRulePersistence persistence)
Deprecated. 


Liferay 6.1.2-ce-ga3