001 /** 002 * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved. 003 * 004 * This library is free software; you can redistribute it and/or modify it under 005 * the terms of the GNU Lesser General Public License as published by the Free 006 * Software Foundation; either version 2.1 of the License, or (at your option) 007 * any later version. 008 * 009 * This library is distributed in the hope that it will be useful, but WITHOUT 010 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 011 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 012 * details. 013 */ 014 015 package com.liferay.portlet.mobiledevicerules.service.persistence; 016 017 import com.liferay.portal.service.persistence.BasePersistence; 018 019 import com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup; 020 021 /** 022 * The persistence interface for the m d r rule group service. 023 * 024 * <p> 025 * Caching information and settings can be found in <code>portal.properties</code> 026 * </p> 027 * 028 * @author Edward C. Han 029 * @see MDRRuleGroupPersistenceImpl 030 * @see MDRRuleGroupUtil 031 * @generated 032 */ 033 public interface MDRRuleGroupPersistence extends BasePersistence<MDRRuleGroup> { 034 /* 035 * NOTE FOR DEVELOPERS: 036 * 037 * Never modify or reference this interface directly. Always use {@link MDRRuleGroupUtil} to access the m d r rule group persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this interface. 038 */ 039 040 /** 041 * Caches the m d r rule group in the entity cache if it is enabled. 042 * 043 * @param mdrRuleGroup the m d r rule group 044 */ 045 public void cacheResult( 046 com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup mdrRuleGroup); 047 048 /** 049 * Caches the m d r rule groups in the entity cache if it is enabled. 050 * 051 * @param mdrRuleGroups the m d r rule groups 052 */ 053 public void cacheResult( 054 java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> mdrRuleGroups); 055 056 /** 057 * Creates a new m d r rule group with the primary key. Does not add the m d r rule group to the database. 058 * 059 * @param ruleGroupId the primary key for the new m d r rule group 060 * @return the new m d r rule group 061 */ 062 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup create( 063 long ruleGroupId); 064 065 /** 066 * Removes the m d r rule group with the primary key from the database. Also notifies the appropriate model listeners. 067 * 068 * @param ruleGroupId the primary key of the m d r rule group 069 * @return the m d r rule group that was removed 070 * @throws com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException if a m d r rule group with the primary key could not be found 071 * @throws SystemException if a system exception occurred 072 */ 073 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup remove( 074 long ruleGroupId) 075 throws com.liferay.portal.kernel.exception.SystemException, 076 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 077 078 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup updateImpl( 079 com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup mdrRuleGroup, 080 boolean merge) 081 throws com.liferay.portal.kernel.exception.SystemException; 082 083 /** 084 * Returns the m d r rule group with the primary key or throws a {@link com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException} if it could not be found. 085 * 086 * @param ruleGroupId the primary key of the m d r rule group 087 * @return the m d r rule group 088 * @throws com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException if a m d r rule group with the primary key could not be found 089 * @throws SystemException if a system exception occurred 090 */ 091 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup findByPrimaryKey( 092 long ruleGroupId) 093 throws com.liferay.portal.kernel.exception.SystemException, 094 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 095 096 /** 097 * Returns the m d r rule group with the primary key or returns <code>null</code> if it could not be found. 098 * 099 * @param ruleGroupId the primary key of the m d r rule group 100 * @return the m d r rule group, or <code>null</code> if a m d r rule group with the primary key could not be found 101 * @throws SystemException if a system exception occurred 102 */ 103 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup fetchByPrimaryKey( 104 long ruleGroupId) 105 throws com.liferay.portal.kernel.exception.SystemException; 106 107 /** 108 * Returns all the m d r rule groups where uuid = ?. 109 * 110 * @param uuid the uuid 111 * @return the matching m d r rule groups 112 * @throws SystemException if a system exception occurred 113 */ 114 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findByUuid( 115 java.lang.String uuid) 116 throws com.liferay.portal.kernel.exception.SystemException; 117 118 /** 119 * Returns a range of all the m d r rule groups where uuid = ?. 120 * 121 * <p> 122 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 123 * </p> 124 * 125 * @param uuid the uuid 126 * @param start the lower bound of the range of m d r rule groups 127 * @param end the upper bound of the range of m d r rule groups (not inclusive) 128 * @return the range of matching m d r rule groups 129 * @throws SystemException if a system exception occurred 130 */ 131 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findByUuid( 132 java.lang.String uuid, int start, int end) 133 throws com.liferay.portal.kernel.exception.SystemException; 134 135 /** 136 * Returns an ordered range of all the m d r rule groups where uuid = ?. 137 * 138 * <p> 139 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 140 * </p> 141 * 142 * @param uuid the uuid 143 * @param start the lower bound of the range of m d r rule groups 144 * @param end the upper bound of the range of m d r rule groups (not inclusive) 145 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 146 * @return the ordered range of matching m d r rule groups 147 * @throws SystemException if a system exception occurred 148 */ 149 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findByUuid( 150 java.lang.String uuid, int start, int end, 151 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 152 throws com.liferay.portal.kernel.exception.SystemException; 153 154 /** 155 * Returns the first m d r rule group in the ordered set where uuid = ?. 156 * 157 * <p> 158 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 159 * </p> 160 * 161 * @param uuid the uuid 162 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 163 * @return the first matching m d r rule group 164 * @throws com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException if a matching m d r rule group could not be found 165 * @throws SystemException if a system exception occurred 166 */ 167 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup findByUuid_First( 168 java.lang.String uuid, 169 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 170 throws com.liferay.portal.kernel.exception.SystemException, 171 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 172 173 /** 174 * Returns the last m d r rule group in the ordered set where uuid = ?. 175 * 176 * <p> 177 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 178 * </p> 179 * 180 * @param uuid the uuid 181 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 182 * @return the last matching m d r rule group 183 * @throws com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException if a matching m d r rule group could not be found 184 * @throws SystemException if a system exception occurred 185 */ 186 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup findByUuid_Last( 187 java.lang.String uuid, 188 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 189 throws com.liferay.portal.kernel.exception.SystemException, 190 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 191 192 /** 193 * Returns the m d r rule groups before and after the current m d r rule group in the ordered set where uuid = ?. 194 * 195 * <p> 196 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 197 * </p> 198 * 199 * @param ruleGroupId the primary key of the current m d r rule group 200 * @param uuid the uuid 201 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 202 * @return the previous, current, and next m d r rule group 203 * @throws com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException if a m d r rule group with the primary key could not be found 204 * @throws SystemException if a system exception occurred 205 */ 206 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup[] findByUuid_PrevAndNext( 207 long ruleGroupId, java.lang.String uuid, 208 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 209 throws com.liferay.portal.kernel.exception.SystemException, 210 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 211 212 /** 213 * Returns the m d r rule group where uuid = ? and groupId = ? or throws a {@link com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException} if it could not be found. 214 * 215 * @param uuid the uuid 216 * @param groupId the group ID 217 * @return the matching m d r rule group 218 * @throws com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException if a matching m d r rule group could not be found 219 * @throws SystemException if a system exception occurred 220 */ 221 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup findByUUID_G( 222 java.lang.String uuid, long groupId) 223 throws com.liferay.portal.kernel.exception.SystemException, 224 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 225 226 /** 227 * Returns the m d r rule group where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found. Uses the finder cache. 228 * 229 * @param uuid the uuid 230 * @param groupId the group ID 231 * @return the matching m d r rule group, or <code>null</code> if a matching m d r rule group could not be found 232 * @throws SystemException if a system exception occurred 233 */ 234 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup fetchByUUID_G( 235 java.lang.String uuid, long groupId) 236 throws com.liferay.portal.kernel.exception.SystemException; 237 238 /** 239 * Returns the m d r rule group where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. 240 * 241 * @param uuid the uuid 242 * @param groupId the group ID 243 * @param retrieveFromCache whether to use the finder cache 244 * @return the matching m d r rule group, or <code>null</code> if a matching m d r rule group could not be found 245 * @throws SystemException if a system exception occurred 246 */ 247 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup fetchByUUID_G( 248 java.lang.String uuid, long groupId, boolean retrieveFromCache) 249 throws com.liferay.portal.kernel.exception.SystemException; 250 251 /** 252 * Returns all the m d r rule groups where groupId = ?. 253 * 254 * @param groupId the group ID 255 * @return the matching m d r rule groups 256 * @throws SystemException if a system exception occurred 257 */ 258 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findByGroupId( 259 long groupId) 260 throws com.liferay.portal.kernel.exception.SystemException; 261 262 /** 263 * Returns a range of all the m d r rule groups where groupId = ?. 264 * 265 * <p> 266 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 267 * </p> 268 * 269 * @param groupId the group ID 270 * @param start the lower bound of the range of m d r rule groups 271 * @param end the upper bound of the range of m d r rule groups (not inclusive) 272 * @return the range of matching m d r rule groups 273 * @throws SystemException if a system exception occurred 274 */ 275 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findByGroupId( 276 long groupId, int start, int end) 277 throws com.liferay.portal.kernel.exception.SystemException; 278 279 /** 280 * Returns an ordered range of all the m d r rule groups where groupId = ?. 281 * 282 * <p> 283 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 284 * </p> 285 * 286 * @param groupId the group ID 287 * @param start the lower bound of the range of m d r rule groups 288 * @param end the upper bound of the range of m d r rule groups (not inclusive) 289 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 290 * @return the ordered range of matching m d r rule groups 291 * @throws SystemException if a system exception occurred 292 */ 293 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findByGroupId( 294 long groupId, int start, int end, 295 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 296 throws com.liferay.portal.kernel.exception.SystemException; 297 298 /** 299 * Returns the first m d r rule group in the ordered set where groupId = ?. 300 * 301 * <p> 302 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 303 * </p> 304 * 305 * @param groupId the group ID 306 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 307 * @return the first matching m d r rule group 308 * @throws com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException if a matching m d r rule group could not be found 309 * @throws SystemException if a system exception occurred 310 */ 311 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup findByGroupId_First( 312 long groupId, 313 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 314 throws com.liferay.portal.kernel.exception.SystemException, 315 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 316 317 /** 318 * Returns the last m d r rule group in the ordered set where groupId = ?. 319 * 320 * <p> 321 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 322 * </p> 323 * 324 * @param groupId the group ID 325 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 326 * @return the last matching m d r rule group 327 * @throws com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException if a matching m d r rule group could not be found 328 * @throws SystemException if a system exception occurred 329 */ 330 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup findByGroupId_Last( 331 long groupId, 332 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 333 throws com.liferay.portal.kernel.exception.SystemException, 334 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 335 336 /** 337 * Returns the m d r rule groups before and after the current m d r rule group in the ordered set where groupId = ?. 338 * 339 * <p> 340 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 341 * </p> 342 * 343 * @param ruleGroupId the primary key of the current m d r rule group 344 * @param groupId the group ID 345 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 346 * @return the previous, current, and next m d r rule group 347 * @throws com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException if a m d r rule group with the primary key could not be found 348 * @throws SystemException if a system exception occurred 349 */ 350 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup[] findByGroupId_PrevAndNext( 351 long ruleGroupId, long groupId, 352 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 353 throws com.liferay.portal.kernel.exception.SystemException, 354 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 355 356 /** 357 * Returns all the m d r rule groups that the user has permission to view where groupId = ?. 358 * 359 * @param groupId the group ID 360 * @return the matching m d r rule groups that the user has permission to view 361 * @throws SystemException if a system exception occurred 362 */ 363 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> filterFindByGroupId( 364 long groupId) 365 throws com.liferay.portal.kernel.exception.SystemException; 366 367 /** 368 * Returns a range of all the m d r rule groups that the user has permission to view where groupId = ?. 369 * 370 * <p> 371 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 372 * </p> 373 * 374 * @param groupId the group ID 375 * @param start the lower bound of the range of m d r rule groups 376 * @param end the upper bound of the range of m d r rule groups (not inclusive) 377 * @return the range of matching m d r rule groups that the user has permission to view 378 * @throws SystemException if a system exception occurred 379 */ 380 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> filterFindByGroupId( 381 long groupId, int start, int end) 382 throws com.liferay.portal.kernel.exception.SystemException; 383 384 /** 385 * Returns an ordered range of all the m d r rule groups that the user has permissions to view where groupId = ?. 386 * 387 * <p> 388 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 389 * </p> 390 * 391 * @param groupId the group ID 392 * @param start the lower bound of the range of m d r rule groups 393 * @param end the upper bound of the range of m d r rule groups (not inclusive) 394 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 395 * @return the ordered range of matching m d r rule groups that the user has permission to view 396 * @throws SystemException if a system exception occurred 397 */ 398 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> filterFindByGroupId( 399 long groupId, int start, int end, 400 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 401 throws com.liferay.portal.kernel.exception.SystemException; 402 403 /** 404 * Returns the m d r rule groups before and after the current m d r rule group in the ordered set of m d r rule groups that the user has permission to view where groupId = ?. 405 * 406 * @param ruleGroupId the primary key of the current m d r rule group 407 * @param groupId the group ID 408 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 409 * @return the previous, current, and next m d r rule group 410 * @throws com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException if a m d r rule group with the primary key could not be found 411 * @throws SystemException if a system exception occurred 412 */ 413 public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup[] filterFindByGroupId_PrevAndNext( 414 long ruleGroupId, long groupId, 415 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 416 throws com.liferay.portal.kernel.exception.SystemException, 417 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 418 419 /** 420 * Returns all the m d r rule groups. 421 * 422 * @return the m d r rule groups 423 * @throws SystemException if a system exception occurred 424 */ 425 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findAll() 426 throws com.liferay.portal.kernel.exception.SystemException; 427 428 /** 429 * Returns a range of all the m d r rule groups. 430 * 431 * <p> 432 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 433 * </p> 434 * 435 * @param start the lower bound of the range of m d r rule groups 436 * @param end the upper bound of the range of m d r rule groups (not inclusive) 437 * @return the range of m d r rule groups 438 * @throws SystemException if a system exception occurred 439 */ 440 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findAll( 441 int start, int end) 442 throws com.liferay.portal.kernel.exception.SystemException; 443 444 /** 445 * Returns an ordered range of all the m d r rule groups. 446 * 447 * <p> 448 * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. 449 * </p> 450 * 451 * @param start the lower bound of the range of m d r rule groups 452 * @param end the upper bound of the range of m d r rule groups (not inclusive) 453 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 454 * @return the ordered range of m d r rule groups 455 * @throws SystemException if a system exception occurred 456 */ 457 public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> findAll( 458 int start, int end, 459 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 460 throws com.liferay.portal.kernel.exception.SystemException; 461 462 /** 463 * Removes all the m d r rule groups where uuid = ? from the database. 464 * 465 * @param uuid the uuid 466 * @throws SystemException if a system exception occurred 467 */ 468 public void removeByUuid(java.lang.String uuid) 469 throws com.liferay.portal.kernel.exception.SystemException; 470 471 /** 472 * Removes the m d r rule group where uuid = ? and groupId = ? from the database. 473 * 474 * @param uuid the uuid 475 * @param groupId the group ID 476 * @throws SystemException if a system exception occurred 477 */ 478 public void removeByUUID_G(java.lang.String uuid, long groupId) 479 throws com.liferay.portal.kernel.exception.SystemException, 480 com.liferay.portlet.mobiledevicerules.NoSuchRuleGroupException; 481 482 /** 483 * Removes all the m d r rule groups where groupId = ? from the database. 484 * 485 * @param groupId the group ID 486 * @throws SystemException if a system exception occurred 487 */ 488 public void removeByGroupId(long groupId) 489 throws com.liferay.portal.kernel.exception.SystemException; 490 491 /** 492 * Removes all the m d r rule groups from the database. 493 * 494 * @throws SystemException if a system exception occurred 495 */ 496 public void removeAll() 497 throws com.liferay.portal.kernel.exception.SystemException; 498 499 /** 500 * Returns the number of m d r rule groups where uuid = ?. 501 * 502 * @param uuid the uuid 503 * @return the number of matching m d r rule groups 504 * @throws SystemException if a system exception occurred 505 */ 506 public int countByUuid(java.lang.String uuid) 507 throws com.liferay.portal.kernel.exception.SystemException; 508 509 /** 510 * Returns the number of m d r rule groups where uuid = ? and groupId = ?. 511 * 512 * @param uuid the uuid 513 * @param groupId the group ID 514 * @return the number of matching m d r rule groups 515 * @throws SystemException if a system exception occurred 516 */ 517 public int countByUUID_G(java.lang.String uuid, long groupId) 518 throws com.liferay.portal.kernel.exception.SystemException; 519 520 /** 521 * Returns the number of m d r rule groups where groupId = ?. 522 * 523 * @param groupId the group ID 524 * @return the number of matching m d r rule groups 525 * @throws SystemException if a system exception occurred 526 */ 527 public int countByGroupId(long groupId) 528 throws com.liferay.portal.kernel.exception.SystemException; 529 530 /** 531 * Returns the number of m d r rule groups that the user has permission to view where groupId = ?. 532 * 533 * @param groupId the group ID 534 * @return the number of matching m d r rule groups that the user has permission to view 535 * @throws SystemException if a system exception occurred 536 */ 537 public int filterCountByGroupId(long groupId) 538 throws com.liferay.portal.kernel.exception.SystemException; 539 540 /** 541 * Returns the number of m d r rule groups. 542 * 543 * @return the number of m d r rule groups 544 * @throws SystemException if a system exception occurred 545 */ 546 public int countAll() 547 throws com.liferay.portal.kernel.exception.SystemException; 548 }