001 /** 002 * Copyright (c) 2000-2013 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.dynamicdatamapping.service.persistence; 016 017 import com.liferay.portal.service.persistence.BasePersistence; 018 019 import com.liferay.portlet.dynamicdatamapping.model.DDMContent; 020 021 /** 022 * The persistence interface for the d d m content service. 023 * 024 * <p> 025 * Caching information and settings can be found in <code>portal.properties</code> 026 * </p> 027 * 028 * @author Brian Wing Shun Chan 029 * @see DDMContentPersistenceImpl 030 * @see DDMContentUtil 031 * @generated 032 */ 033 public interface DDMContentPersistence extends BasePersistence<DDMContent> { 034 /* 035 * NOTE FOR DEVELOPERS: 036 * 037 * Never modify or reference this interface directly. Always use {@link DDMContentUtil} to access the d d m content persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this interface. 038 */ 039 040 /** 041 * Caches the d d m content in the entity cache if it is enabled. 042 * 043 * @param ddmContent the d d m content 044 */ 045 public void cacheResult( 046 com.liferay.portlet.dynamicdatamapping.model.DDMContent ddmContent); 047 048 /** 049 * Caches the d d m contents in the entity cache if it is enabled. 050 * 051 * @param ddmContents the d d m contents 052 */ 053 public void cacheResult( 054 java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> ddmContents); 055 056 /** 057 * Creates a new d d m content with the primary key. Does not add the d d m content to the database. 058 * 059 * @param contentId the primary key for the new d d m content 060 * @return the new d d m content 061 */ 062 public com.liferay.portlet.dynamicdatamapping.model.DDMContent create( 063 long contentId); 064 065 /** 066 * Removes the d d m content with the primary key from the database. Also notifies the appropriate model listeners. 067 * 068 * @param contentId the primary key of the d d m content 069 * @return the d d m content that was removed 070 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a d d m content with the primary key could not be found 071 * @throws SystemException if a system exception occurred 072 */ 073 public com.liferay.portlet.dynamicdatamapping.model.DDMContent remove( 074 long contentId) 075 throws com.liferay.portal.kernel.exception.SystemException, 076 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 077 078 public com.liferay.portlet.dynamicdatamapping.model.DDMContent updateImpl( 079 com.liferay.portlet.dynamicdatamapping.model.DDMContent ddmContent, 080 boolean merge) 081 throws com.liferay.portal.kernel.exception.SystemException; 082 083 /** 084 * Returns the d d m content with the primary key or throws a {@link com.liferay.portlet.dynamicdatamapping.NoSuchContentException} if it could not be found. 085 * 086 * @param contentId the primary key of the d d m content 087 * @return the d d m content 088 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a d d m content with the primary key could not be found 089 * @throws SystemException if a system exception occurred 090 */ 091 public com.liferay.portlet.dynamicdatamapping.model.DDMContent findByPrimaryKey( 092 long contentId) 093 throws com.liferay.portal.kernel.exception.SystemException, 094 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 095 096 /** 097 * Returns the d d m content with the primary key or returns <code>null</code> if it could not be found. 098 * 099 * @param contentId the primary key of the d d m content 100 * @return the d d m content, or <code>null</code> if a d d m content with the primary key could not be found 101 * @throws SystemException if a system exception occurred 102 */ 103 public com.liferay.portlet.dynamicdatamapping.model.DDMContent fetchByPrimaryKey( 104 long contentId) 105 throws com.liferay.portal.kernel.exception.SystemException; 106 107 /** 108 * Returns all the d d m contents where uuid = ?. 109 * 110 * @param uuid the uuid 111 * @return the matching d d m contents 112 * @throws SystemException if a system exception occurred 113 */ 114 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> findByUuid( 115 java.lang.String uuid) 116 throws com.liferay.portal.kernel.exception.SystemException; 117 118 /** 119 * Returns a range of all the d d m contents 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 d d m contents 127 * @param end the upper bound of the range of d d m contents (not inclusive) 128 * @return the range of matching d d m contents 129 * @throws SystemException if a system exception occurred 130 */ 131 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> 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 d d m contents 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 d d m contents 144 * @param end the upper bound of the range of d d m contents (not inclusive) 145 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 146 * @return the ordered range of matching d d m contents 147 * @throws SystemException if a system exception occurred 148 */ 149 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> 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 d d m content in the ordered set where uuid = ?. 156 * 157 * @param uuid the uuid 158 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 159 * @return the first matching d d m content 160 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a matching d d m content could not be found 161 * @throws SystemException if a system exception occurred 162 */ 163 public com.liferay.portlet.dynamicdatamapping.model.DDMContent findByUuid_First( 164 java.lang.String uuid, 165 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 166 throws com.liferay.portal.kernel.exception.SystemException, 167 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 168 169 /** 170 * Returns the first d d m content in the ordered set where uuid = ?. 171 * 172 * @param uuid the uuid 173 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 174 * @return the first matching d d m content, or <code>null</code> if a matching d d m content could not be found 175 * @throws SystemException if a system exception occurred 176 */ 177 public com.liferay.portlet.dynamicdatamapping.model.DDMContent fetchByUuid_First( 178 java.lang.String uuid, 179 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 180 throws com.liferay.portal.kernel.exception.SystemException; 181 182 /** 183 * Returns the last d d m content in the ordered set where uuid = ?. 184 * 185 * @param uuid the uuid 186 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 187 * @return the last matching d d m content 188 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a matching d d m content could not be found 189 * @throws SystemException if a system exception occurred 190 */ 191 public com.liferay.portlet.dynamicdatamapping.model.DDMContent findByUuid_Last( 192 java.lang.String uuid, 193 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 194 throws com.liferay.portal.kernel.exception.SystemException, 195 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 196 197 /** 198 * Returns the last d d m content in the ordered set where uuid = ?. 199 * 200 * @param uuid the uuid 201 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 202 * @return the last matching d d m content, or <code>null</code> if a matching d d m content could not be found 203 * @throws SystemException if a system exception occurred 204 */ 205 public com.liferay.portlet.dynamicdatamapping.model.DDMContent fetchByUuid_Last( 206 java.lang.String uuid, 207 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 208 throws com.liferay.portal.kernel.exception.SystemException; 209 210 /** 211 * Returns the d d m contents before and after the current d d m content in the ordered set where uuid = ?. 212 * 213 * @param contentId the primary key of the current d d m content 214 * @param uuid the uuid 215 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 216 * @return the previous, current, and next d d m content 217 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a d d m content with the primary key could not be found 218 * @throws SystemException if a system exception occurred 219 */ 220 public com.liferay.portlet.dynamicdatamapping.model.DDMContent[] findByUuid_PrevAndNext( 221 long contentId, java.lang.String uuid, 222 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 223 throws com.liferay.portal.kernel.exception.SystemException, 224 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 225 226 /** 227 * Returns the d d m content where uuid = ? and groupId = ? or throws a {@link com.liferay.portlet.dynamicdatamapping.NoSuchContentException} if it could not be found. 228 * 229 * @param uuid the uuid 230 * @param groupId the group ID 231 * @return the matching d d m content 232 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a matching d d m content could not be found 233 * @throws SystemException if a system exception occurred 234 */ 235 public com.liferay.portlet.dynamicdatamapping.model.DDMContent findByUUID_G( 236 java.lang.String uuid, long groupId) 237 throws com.liferay.portal.kernel.exception.SystemException, 238 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 239 240 /** 241 * Returns the d d m content where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found. Uses the finder cache. 242 * 243 * @param uuid the uuid 244 * @param groupId the group ID 245 * @return the matching d d m content, or <code>null</code> if a matching d d m content could not be found 246 * @throws SystemException if a system exception occurred 247 */ 248 public com.liferay.portlet.dynamicdatamapping.model.DDMContent fetchByUUID_G( 249 java.lang.String uuid, long groupId) 250 throws com.liferay.portal.kernel.exception.SystemException; 251 252 /** 253 * Returns the d d m content where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. 254 * 255 * @param uuid the uuid 256 * @param groupId the group ID 257 * @param retrieveFromCache whether to use the finder cache 258 * @return the matching d d m content, or <code>null</code> if a matching d d m content could not be found 259 * @throws SystemException if a system exception occurred 260 */ 261 public com.liferay.portlet.dynamicdatamapping.model.DDMContent fetchByUUID_G( 262 java.lang.String uuid, long groupId, boolean retrieveFromCache) 263 throws com.liferay.portal.kernel.exception.SystemException; 264 265 /** 266 * Returns all the d d m contents where groupId = ?. 267 * 268 * @param groupId the group ID 269 * @return the matching d d m contents 270 * @throws SystemException if a system exception occurred 271 */ 272 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> findByGroupId( 273 long groupId) 274 throws com.liferay.portal.kernel.exception.SystemException; 275 276 /** 277 * Returns a range of all the d d m contents where groupId = ?. 278 * 279 * <p> 280 * 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. 281 * </p> 282 * 283 * @param groupId the group ID 284 * @param start the lower bound of the range of d d m contents 285 * @param end the upper bound of the range of d d m contents (not inclusive) 286 * @return the range of matching d d m contents 287 * @throws SystemException if a system exception occurred 288 */ 289 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> findByGroupId( 290 long groupId, int start, int end) 291 throws com.liferay.portal.kernel.exception.SystemException; 292 293 /** 294 * Returns an ordered range of all the d d m contents where groupId = ?. 295 * 296 * <p> 297 * 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. 298 * </p> 299 * 300 * @param groupId the group ID 301 * @param start the lower bound of the range of d d m contents 302 * @param end the upper bound of the range of d d m contents (not inclusive) 303 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 304 * @return the ordered range of matching d d m contents 305 * @throws SystemException if a system exception occurred 306 */ 307 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> findByGroupId( 308 long groupId, int start, int end, 309 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 310 throws com.liferay.portal.kernel.exception.SystemException; 311 312 /** 313 * Returns the first d d m content in the ordered set where groupId = ?. 314 * 315 * @param groupId the group ID 316 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 317 * @return the first matching d d m content 318 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a matching d d m content could not be found 319 * @throws SystemException if a system exception occurred 320 */ 321 public com.liferay.portlet.dynamicdatamapping.model.DDMContent findByGroupId_First( 322 long groupId, 323 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 324 throws com.liferay.portal.kernel.exception.SystemException, 325 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 326 327 /** 328 * Returns the first d d m content in the ordered set where groupId = ?. 329 * 330 * @param groupId the group ID 331 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 332 * @return the first matching d d m content, or <code>null</code> if a matching d d m content could not be found 333 * @throws SystemException if a system exception occurred 334 */ 335 public com.liferay.portlet.dynamicdatamapping.model.DDMContent fetchByGroupId_First( 336 long groupId, 337 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 338 throws com.liferay.portal.kernel.exception.SystemException; 339 340 /** 341 * Returns the last d d m content in the ordered set where groupId = ?. 342 * 343 * @param groupId the group ID 344 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 345 * @return the last matching d d m content 346 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a matching d d m content could not be found 347 * @throws SystemException if a system exception occurred 348 */ 349 public com.liferay.portlet.dynamicdatamapping.model.DDMContent findByGroupId_Last( 350 long groupId, 351 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 352 throws com.liferay.portal.kernel.exception.SystemException, 353 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 354 355 /** 356 * Returns the last d d m content in the ordered set where groupId = ?. 357 * 358 * @param groupId the group ID 359 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 360 * @return the last matching d d m content, or <code>null</code> if a matching d d m content could not be found 361 * @throws SystemException if a system exception occurred 362 */ 363 public com.liferay.portlet.dynamicdatamapping.model.DDMContent fetchByGroupId_Last( 364 long groupId, 365 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 366 throws com.liferay.portal.kernel.exception.SystemException; 367 368 /** 369 * Returns the d d m contents before and after the current d d m content in the ordered set where groupId = ?. 370 * 371 * @param contentId the primary key of the current d d m content 372 * @param groupId the group ID 373 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 374 * @return the previous, current, and next d d m content 375 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a d d m content with the primary key could not be found 376 * @throws SystemException if a system exception occurred 377 */ 378 public com.liferay.portlet.dynamicdatamapping.model.DDMContent[] findByGroupId_PrevAndNext( 379 long contentId, long groupId, 380 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 381 throws com.liferay.portal.kernel.exception.SystemException, 382 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 383 384 /** 385 * Returns all the d d m contents where companyId = ?. 386 * 387 * @param companyId the company ID 388 * @return the matching d d m contents 389 * @throws SystemException if a system exception occurred 390 */ 391 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> findByCompanyId( 392 long companyId) 393 throws com.liferay.portal.kernel.exception.SystemException; 394 395 /** 396 * Returns a range of all the d d m contents where companyId = ?. 397 * 398 * <p> 399 * 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. 400 * </p> 401 * 402 * @param companyId the company ID 403 * @param start the lower bound of the range of d d m contents 404 * @param end the upper bound of the range of d d m contents (not inclusive) 405 * @return the range of matching d d m contents 406 * @throws SystemException if a system exception occurred 407 */ 408 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> findByCompanyId( 409 long companyId, int start, int end) 410 throws com.liferay.portal.kernel.exception.SystemException; 411 412 /** 413 * Returns an ordered range of all the d d m contents where companyId = ?. 414 * 415 * <p> 416 * 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. 417 * </p> 418 * 419 * @param companyId the company ID 420 * @param start the lower bound of the range of d d m contents 421 * @param end the upper bound of the range of d d m contents (not inclusive) 422 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 423 * @return the ordered range of matching d d m contents 424 * @throws SystemException if a system exception occurred 425 */ 426 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> findByCompanyId( 427 long companyId, int start, int end, 428 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 429 throws com.liferay.portal.kernel.exception.SystemException; 430 431 /** 432 * Returns the first d d m content in the ordered set where companyId = ?. 433 * 434 * @param companyId the company ID 435 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 436 * @return the first matching d d m content 437 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a matching d d m content could not be found 438 * @throws SystemException if a system exception occurred 439 */ 440 public com.liferay.portlet.dynamicdatamapping.model.DDMContent findByCompanyId_First( 441 long companyId, 442 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 443 throws com.liferay.portal.kernel.exception.SystemException, 444 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 445 446 /** 447 * Returns the first d d m content in the ordered set where companyId = ?. 448 * 449 * @param companyId the company ID 450 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 451 * @return the first matching d d m content, or <code>null</code> if a matching d d m content could not be found 452 * @throws SystemException if a system exception occurred 453 */ 454 public com.liferay.portlet.dynamicdatamapping.model.DDMContent fetchByCompanyId_First( 455 long companyId, 456 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 457 throws com.liferay.portal.kernel.exception.SystemException; 458 459 /** 460 * Returns the last d d m content in the ordered set where companyId = ?. 461 * 462 * @param companyId the company ID 463 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 464 * @return the last matching d d m content 465 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a matching d d m content could not be found 466 * @throws SystemException if a system exception occurred 467 */ 468 public com.liferay.portlet.dynamicdatamapping.model.DDMContent findByCompanyId_Last( 469 long companyId, 470 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 471 throws com.liferay.portal.kernel.exception.SystemException, 472 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 473 474 /** 475 * Returns the last d d m content in the ordered set where companyId = ?. 476 * 477 * @param companyId the company ID 478 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 479 * @return the last matching d d m content, or <code>null</code> if a matching d d m content could not be found 480 * @throws SystemException if a system exception occurred 481 */ 482 public com.liferay.portlet.dynamicdatamapping.model.DDMContent fetchByCompanyId_Last( 483 long companyId, 484 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 485 throws com.liferay.portal.kernel.exception.SystemException; 486 487 /** 488 * Returns the d d m contents before and after the current d d m content in the ordered set where companyId = ?. 489 * 490 * @param contentId the primary key of the current d d m content 491 * @param companyId the company ID 492 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 493 * @return the previous, current, and next d d m content 494 * @throws com.liferay.portlet.dynamicdatamapping.NoSuchContentException if a d d m content with the primary key could not be found 495 * @throws SystemException if a system exception occurred 496 */ 497 public com.liferay.portlet.dynamicdatamapping.model.DDMContent[] findByCompanyId_PrevAndNext( 498 long contentId, long companyId, 499 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 500 throws com.liferay.portal.kernel.exception.SystemException, 501 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 502 503 /** 504 * Returns all the d d m contents. 505 * 506 * @return the d d m contents 507 * @throws SystemException if a system exception occurred 508 */ 509 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> findAll() 510 throws com.liferay.portal.kernel.exception.SystemException; 511 512 /** 513 * Returns a range of all the d d m contents. 514 * 515 * <p> 516 * 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. 517 * </p> 518 * 519 * @param start the lower bound of the range of d d m contents 520 * @param end the upper bound of the range of d d m contents (not inclusive) 521 * @return the range of d d m contents 522 * @throws SystemException if a system exception occurred 523 */ 524 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> findAll( 525 int start, int end) 526 throws com.liferay.portal.kernel.exception.SystemException; 527 528 /** 529 * Returns an ordered range of all the d d m contents. 530 * 531 * <p> 532 * 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. 533 * </p> 534 * 535 * @param start the lower bound of the range of d d m contents 536 * @param end the upper bound of the range of d d m contents (not inclusive) 537 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 538 * @return the ordered range of d d m contents 539 * @throws SystemException if a system exception occurred 540 */ 541 public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMContent> findAll( 542 int start, int end, 543 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 544 throws com.liferay.portal.kernel.exception.SystemException; 545 546 /** 547 * Removes all the d d m contents where uuid = ? from the database. 548 * 549 * @param uuid the uuid 550 * @throws SystemException if a system exception occurred 551 */ 552 public void removeByUuid(java.lang.String uuid) 553 throws com.liferay.portal.kernel.exception.SystemException; 554 555 /** 556 * Removes the d d m content where uuid = ? and groupId = ? from the database. 557 * 558 * @param uuid the uuid 559 * @param groupId the group ID 560 * @return the d d m content that was removed 561 * @throws SystemException if a system exception occurred 562 */ 563 public com.liferay.portlet.dynamicdatamapping.model.DDMContent removeByUUID_G( 564 java.lang.String uuid, long groupId) 565 throws com.liferay.portal.kernel.exception.SystemException, 566 com.liferay.portlet.dynamicdatamapping.NoSuchContentException; 567 568 /** 569 * Removes all the d d m contents where groupId = ? from the database. 570 * 571 * @param groupId the group ID 572 * @throws SystemException if a system exception occurred 573 */ 574 public void removeByGroupId(long groupId) 575 throws com.liferay.portal.kernel.exception.SystemException; 576 577 /** 578 * Removes all the d d m contents where companyId = ? from the database. 579 * 580 * @param companyId the company ID 581 * @throws SystemException if a system exception occurred 582 */ 583 public void removeByCompanyId(long companyId) 584 throws com.liferay.portal.kernel.exception.SystemException; 585 586 /** 587 * Removes all the d d m contents from the database. 588 * 589 * @throws SystemException if a system exception occurred 590 */ 591 public void removeAll() 592 throws com.liferay.portal.kernel.exception.SystemException; 593 594 /** 595 * Returns the number of d d m contents where uuid = ?. 596 * 597 * @param uuid the uuid 598 * @return the number of matching d d m contents 599 * @throws SystemException if a system exception occurred 600 */ 601 public int countByUuid(java.lang.String uuid) 602 throws com.liferay.portal.kernel.exception.SystemException; 603 604 /** 605 * Returns the number of d d m contents where uuid = ? and groupId = ?. 606 * 607 * @param uuid the uuid 608 * @param groupId the group ID 609 * @return the number of matching d d m contents 610 * @throws SystemException if a system exception occurred 611 */ 612 public int countByUUID_G(java.lang.String uuid, long groupId) 613 throws com.liferay.portal.kernel.exception.SystemException; 614 615 /** 616 * Returns the number of d d m contents where groupId = ?. 617 * 618 * @param groupId the group ID 619 * @return the number of matching d d m contents 620 * @throws SystemException if a system exception occurred 621 */ 622 public int countByGroupId(long groupId) 623 throws com.liferay.portal.kernel.exception.SystemException; 624 625 /** 626 * Returns the number of d d m contents where companyId = ?. 627 * 628 * @param companyId the company ID 629 * @return the number of matching d d m contents 630 * @throws SystemException if a system exception occurred 631 */ 632 public int countByCompanyId(long companyId) 633 throws com.liferay.portal.kernel.exception.SystemException; 634 635 /** 636 * Returns the number of d d m contents. 637 * 638 * @return the number of d d m contents 639 * @throws SystemException if a system exception occurred 640 */ 641 public int countAll() 642 throws com.liferay.portal.kernel.exception.SystemException; 643 }