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.asset.service.persistence; 016 017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil; 018 import com.liferay.portal.kernel.dao.orm.DynamicQuery; 019 import com.liferay.portal.kernel.exception.SystemException; 020 import com.liferay.portal.kernel.util.OrderByComparator; 021 import com.liferay.portal.kernel.util.ReferenceRegistry; 022 import com.liferay.portal.service.ServiceContext; 023 024 import com.liferay.portlet.asset.model.AssetVocabulary; 025 026 import java.util.List; 027 028 /** 029 * The persistence utility for the asset vocabulary service. This utility wraps {@link AssetVocabularyPersistenceImpl} 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. 030 * 031 * <p> 032 * Caching information and settings can be found in <code>portal.properties</code> 033 * </p> 034 * 035 * @author Brian Wing Shun Chan 036 * @see AssetVocabularyPersistence 037 * @see AssetVocabularyPersistenceImpl 038 * @generated 039 */ 040 public class AssetVocabularyUtil { 041 /* 042 * NOTE FOR DEVELOPERS: 043 * 044 * Never modify this class directly. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this class. 045 */ 046 047 /** 048 * @see com.liferay.portal.service.persistence.BasePersistence#clearCache() 049 */ 050 public static void clearCache() { 051 getPersistence().clearCache(); 052 } 053 054 /** 055 * @see com.liferay.portal.service.persistence.BasePersistence#clearCache(com.liferay.portal.model.BaseModel) 056 */ 057 public static void clearCache(AssetVocabulary assetVocabulary) { 058 getPersistence().clearCache(assetVocabulary); 059 } 060 061 /** 062 * @see com.liferay.portal.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery) 063 */ 064 public long countWithDynamicQuery(DynamicQuery dynamicQuery) 065 throws SystemException { 066 return getPersistence().countWithDynamicQuery(dynamicQuery); 067 } 068 069 /** 070 * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery) 071 */ 072 public static List<AssetVocabulary> findWithDynamicQuery( 073 DynamicQuery dynamicQuery) throws SystemException { 074 return getPersistence().findWithDynamicQuery(dynamicQuery); 075 } 076 077 /** 078 * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int) 079 */ 080 public static List<AssetVocabulary> findWithDynamicQuery( 081 DynamicQuery dynamicQuery, int start, int end) 082 throws SystemException { 083 return getPersistence().findWithDynamicQuery(dynamicQuery, start, end); 084 } 085 086 /** 087 * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator) 088 */ 089 public static List<AssetVocabulary> findWithDynamicQuery( 090 DynamicQuery dynamicQuery, int start, int end, 091 OrderByComparator orderByComparator) throws SystemException { 092 return getPersistence() 093 .findWithDynamicQuery(dynamicQuery, start, end, 094 orderByComparator); 095 } 096 097 /** 098 * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel) 099 */ 100 public static AssetVocabulary update(AssetVocabulary assetVocabulary) 101 throws SystemException { 102 return getPersistence().update(assetVocabulary); 103 } 104 105 /** 106 * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, ServiceContext) 107 */ 108 public static AssetVocabulary update(AssetVocabulary assetVocabulary, 109 ServiceContext serviceContext) throws SystemException { 110 return getPersistence().update(assetVocabulary, serviceContext); 111 } 112 113 /** 114 * Caches the asset vocabulary in the entity cache if it is enabled. 115 * 116 * @param assetVocabulary the asset vocabulary 117 */ 118 public static void cacheResult( 119 com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary) { 120 getPersistence().cacheResult(assetVocabulary); 121 } 122 123 /** 124 * Caches the asset vocabularies in the entity cache if it is enabled. 125 * 126 * @param assetVocabularies the asset vocabularies 127 */ 128 public static void cacheResult( 129 java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> assetVocabularies) { 130 getPersistence().cacheResult(assetVocabularies); 131 } 132 133 /** 134 * Creates a new asset vocabulary with the primary key. Does not add the asset vocabulary to the database. 135 * 136 * @param vocabularyId the primary key for the new asset vocabulary 137 * @return the new asset vocabulary 138 */ 139 public static com.liferay.portlet.asset.model.AssetVocabulary create( 140 long vocabularyId) { 141 return getPersistence().create(vocabularyId); 142 } 143 144 /** 145 * Removes the asset vocabulary with the primary key from the database. Also notifies the appropriate model listeners. 146 * 147 * @param vocabularyId the primary key of the asset vocabulary 148 * @return the asset vocabulary that was removed 149 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found 150 * @throws SystemException if a system exception occurred 151 */ 152 public static com.liferay.portlet.asset.model.AssetVocabulary remove( 153 long vocabularyId) 154 throws com.liferay.portal.kernel.exception.SystemException, 155 com.liferay.portlet.asset.NoSuchVocabularyException { 156 return getPersistence().remove(vocabularyId); 157 } 158 159 public static com.liferay.portlet.asset.model.AssetVocabulary updateImpl( 160 com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary) 161 throws com.liferay.portal.kernel.exception.SystemException { 162 return getPersistence().updateImpl(assetVocabulary); 163 } 164 165 /** 166 * Returns the asset vocabulary with the primary key or throws a {@link com.liferay.portlet.asset.NoSuchVocabularyException} if it could not be found. 167 * 168 * @param vocabularyId the primary key of the asset vocabulary 169 * @return the asset vocabulary 170 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found 171 * @throws SystemException if a system exception occurred 172 */ 173 public static com.liferay.portlet.asset.model.AssetVocabulary findByPrimaryKey( 174 long vocabularyId) 175 throws com.liferay.portal.kernel.exception.SystemException, 176 com.liferay.portlet.asset.NoSuchVocabularyException { 177 return getPersistence().findByPrimaryKey(vocabularyId); 178 } 179 180 /** 181 * Returns the asset vocabulary with the primary key or returns <code>null</code> if it could not be found. 182 * 183 * @param vocabularyId the primary key of the asset vocabulary 184 * @return the asset vocabulary, or <code>null</code> if a asset vocabulary with the primary key could not be found 185 * @throws SystemException if a system exception occurred 186 */ 187 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByPrimaryKey( 188 long vocabularyId) 189 throws com.liferay.portal.kernel.exception.SystemException { 190 return getPersistence().fetchByPrimaryKey(vocabularyId); 191 } 192 193 /** 194 * Returns all the asset vocabularies where uuid = ?. 195 * 196 * @param uuid the uuid 197 * @return the matching asset vocabularies 198 * @throws SystemException if a system exception occurred 199 */ 200 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByUuid( 201 java.lang.String uuid) 202 throws com.liferay.portal.kernel.exception.SystemException { 203 return getPersistence().findByUuid(uuid); 204 } 205 206 /** 207 * Returns a range of all the asset vocabularies where uuid = ?. 208 * 209 * <p> 210 * 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. 211 * </p> 212 * 213 * @param uuid the uuid 214 * @param start the lower bound of the range of asset vocabularies 215 * @param end the upper bound of the range of asset vocabularies (not inclusive) 216 * @return the range of matching asset vocabularies 217 * @throws SystemException if a system exception occurred 218 */ 219 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByUuid( 220 java.lang.String uuid, int start, int end) 221 throws com.liferay.portal.kernel.exception.SystemException { 222 return getPersistence().findByUuid(uuid, start, end); 223 } 224 225 /** 226 * Returns an ordered range of all the asset vocabularies where uuid = ?. 227 * 228 * <p> 229 * 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. 230 * </p> 231 * 232 * @param uuid the uuid 233 * @param start the lower bound of the range of asset vocabularies 234 * @param end the upper bound of the range of asset vocabularies (not inclusive) 235 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 236 * @return the ordered range of matching asset vocabularies 237 * @throws SystemException if a system exception occurred 238 */ 239 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByUuid( 240 java.lang.String uuid, int start, int end, 241 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 242 throws com.liferay.portal.kernel.exception.SystemException { 243 return getPersistence().findByUuid(uuid, start, end, orderByComparator); 244 } 245 246 /** 247 * Returns the first asset vocabulary in the ordered set where uuid = ?. 248 * 249 * @param uuid the uuid 250 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 251 * @return the first matching asset vocabulary 252 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found 253 * @throws SystemException if a system exception occurred 254 */ 255 public static com.liferay.portlet.asset.model.AssetVocabulary findByUuid_First( 256 java.lang.String uuid, 257 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 258 throws com.liferay.portal.kernel.exception.SystemException, 259 com.liferay.portlet.asset.NoSuchVocabularyException { 260 return getPersistence().findByUuid_First(uuid, orderByComparator); 261 } 262 263 /** 264 * Returns the first asset vocabulary in the ordered set where uuid = ?. 265 * 266 * @param uuid the uuid 267 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 268 * @return the first matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 269 * @throws SystemException if a system exception occurred 270 */ 271 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByUuid_First( 272 java.lang.String uuid, 273 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 274 throws com.liferay.portal.kernel.exception.SystemException { 275 return getPersistence().fetchByUuid_First(uuid, orderByComparator); 276 } 277 278 /** 279 * Returns the last asset vocabulary in the ordered set where uuid = ?. 280 * 281 * @param uuid the uuid 282 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 283 * @return the last matching asset vocabulary 284 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found 285 * @throws SystemException if a system exception occurred 286 */ 287 public static com.liferay.portlet.asset.model.AssetVocabulary findByUuid_Last( 288 java.lang.String uuid, 289 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 290 throws com.liferay.portal.kernel.exception.SystemException, 291 com.liferay.portlet.asset.NoSuchVocabularyException { 292 return getPersistence().findByUuid_Last(uuid, orderByComparator); 293 } 294 295 /** 296 * Returns the last asset vocabulary in the ordered set where uuid = ?. 297 * 298 * @param uuid the uuid 299 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 300 * @return the last matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 301 * @throws SystemException if a system exception occurred 302 */ 303 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByUuid_Last( 304 java.lang.String uuid, 305 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 306 throws com.liferay.portal.kernel.exception.SystemException { 307 return getPersistence().fetchByUuid_Last(uuid, orderByComparator); 308 } 309 310 /** 311 * Returns the asset vocabularies before and after the current asset vocabulary in the ordered set where uuid = ?. 312 * 313 * @param vocabularyId the primary key of the current asset vocabulary 314 * @param uuid the uuid 315 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 316 * @return the previous, current, and next asset vocabulary 317 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found 318 * @throws SystemException if a system exception occurred 319 */ 320 public static com.liferay.portlet.asset.model.AssetVocabulary[] findByUuid_PrevAndNext( 321 long vocabularyId, java.lang.String uuid, 322 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 323 throws com.liferay.portal.kernel.exception.SystemException, 324 com.liferay.portlet.asset.NoSuchVocabularyException { 325 return getPersistence() 326 .findByUuid_PrevAndNext(vocabularyId, uuid, orderByComparator); 327 } 328 329 /** 330 * Returns the asset vocabulary where uuid = ? and groupId = ? or throws a {@link com.liferay.portlet.asset.NoSuchVocabularyException} if it could not be found. 331 * 332 * @param uuid the uuid 333 * @param groupId the group ID 334 * @return the matching asset vocabulary 335 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found 336 * @throws SystemException if a system exception occurred 337 */ 338 public static com.liferay.portlet.asset.model.AssetVocabulary findByUUID_G( 339 java.lang.String uuid, long groupId) 340 throws com.liferay.portal.kernel.exception.SystemException, 341 com.liferay.portlet.asset.NoSuchVocabularyException { 342 return getPersistence().findByUUID_G(uuid, groupId); 343 } 344 345 /** 346 * Returns the asset vocabulary where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found. Uses the finder cache. 347 * 348 * @param uuid the uuid 349 * @param groupId the group ID 350 * @return the matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 351 * @throws SystemException if a system exception occurred 352 */ 353 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByUUID_G( 354 java.lang.String uuid, long groupId) 355 throws com.liferay.portal.kernel.exception.SystemException { 356 return getPersistence().fetchByUUID_G(uuid, groupId); 357 } 358 359 /** 360 * Returns the asset vocabulary where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. 361 * 362 * @param uuid the uuid 363 * @param groupId the group ID 364 * @param retrieveFromCache whether to use the finder cache 365 * @return the matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 366 * @throws SystemException if a system exception occurred 367 */ 368 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByUUID_G( 369 java.lang.String uuid, long groupId, boolean retrieveFromCache) 370 throws com.liferay.portal.kernel.exception.SystemException { 371 return getPersistence().fetchByUUID_G(uuid, groupId, retrieveFromCache); 372 } 373 374 /** 375 * Returns all the asset vocabularies where uuid = ? and companyId = ?. 376 * 377 * @param uuid the uuid 378 * @param companyId the company ID 379 * @return the matching asset vocabularies 380 * @throws SystemException if a system exception occurred 381 */ 382 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByUuid_C( 383 java.lang.String uuid, long companyId) 384 throws com.liferay.portal.kernel.exception.SystemException { 385 return getPersistence().findByUuid_C(uuid, companyId); 386 } 387 388 /** 389 * Returns a range of all the asset vocabularies where uuid = ? and companyId = ?. 390 * 391 * <p> 392 * 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. 393 * </p> 394 * 395 * @param uuid the uuid 396 * @param companyId the company ID 397 * @param start the lower bound of the range of asset vocabularies 398 * @param end the upper bound of the range of asset vocabularies (not inclusive) 399 * @return the range of matching asset vocabularies 400 * @throws SystemException if a system exception occurred 401 */ 402 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByUuid_C( 403 java.lang.String uuid, long companyId, int start, int end) 404 throws com.liferay.portal.kernel.exception.SystemException { 405 return getPersistence().findByUuid_C(uuid, companyId, start, end); 406 } 407 408 /** 409 * Returns an ordered range of all the asset vocabularies where uuid = ? and companyId = ?. 410 * 411 * <p> 412 * 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. 413 * </p> 414 * 415 * @param uuid the uuid 416 * @param companyId the company ID 417 * @param start the lower bound of the range of asset vocabularies 418 * @param end the upper bound of the range of asset vocabularies (not inclusive) 419 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 420 * @return the ordered range of matching asset vocabularies 421 * @throws SystemException if a system exception occurred 422 */ 423 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByUuid_C( 424 java.lang.String uuid, long companyId, int start, int end, 425 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 426 throws com.liferay.portal.kernel.exception.SystemException { 427 return getPersistence() 428 .findByUuid_C(uuid, companyId, start, end, orderByComparator); 429 } 430 431 /** 432 * Returns the first asset vocabulary in the ordered set where uuid = ? and companyId = ?. 433 * 434 * @param uuid the uuid 435 * @param companyId the company ID 436 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 437 * @return the first matching asset vocabulary 438 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found 439 * @throws SystemException if a system exception occurred 440 */ 441 public static com.liferay.portlet.asset.model.AssetVocabulary findByUuid_C_First( 442 java.lang.String uuid, long companyId, 443 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 444 throws com.liferay.portal.kernel.exception.SystemException, 445 com.liferay.portlet.asset.NoSuchVocabularyException { 446 return getPersistence() 447 .findByUuid_C_First(uuid, companyId, orderByComparator); 448 } 449 450 /** 451 * Returns the first asset vocabulary in the ordered set where uuid = ? and companyId = ?. 452 * 453 * @param uuid the uuid 454 * @param companyId the company ID 455 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 456 * @return the first matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 457 * @throws SystemException if a system exception occurred 458 */ 459 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByUuid_C_First( 460 java.lang.String uuid, long companyId, 461 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 462 throws com.liferay.portal.kernel.exception.SystemException { 463 return getPersistence() 464 .fetchByUuid_C_First(uuid, companyId, orderByComparator); 465 } 466 467 /** 468 * Returns the last asset vocabulary in the ordered set where uuid = ? and companyId = ?. 469 * 470 * @param uuid the uuid 471 * @param companyId the company ID 472 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 473 * @return the last matching asset vocabulary 474 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found 475 * @throws SystemException if a system exception occurred 476 */ 477 public static com.liferay.portlet.asset.model.AssetVocabulary findByUuid_C_Last( 478 java.lang.String uuid, long companyId, 479 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 480 throws com.liferay.portal.kernel.exception.SystemException, 481 com.liferay.portlet.asset.NoSuchVocabularyException { 482 return getPersistence() 483 .findByUuid_C_Last(uuid, companyId, orderByComparator); 484 } 485 486 /** 487 * Returns the last asset vocabulary in the ordered set where uuid = ? and companyId = ?. 488 * 489 * @param uuid the uuid 490 * @param companyId the company ID 491 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 492 * @return the last matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 493 * @throws SystemException if a system exception occurred 494 */ 495 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByUuid_C_Last( 496 java.lang.String uuid, long companyId, 497 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 498 throws com.liferay.portal.kernel.exception.SystemException { 499 return getPersistence() 500 .fetchByUuid_C_Last(uuid, companyId, orderByComparator); 501 } 502 503 /** 504 * Returns the asset vocabularies before and after the current asset vocabulary in the ordered set where uuid = ? and companyId = ?. 505 * 506 * @param vocabularyId the primary key of the current asset vocabulary 507 * @param uuid the uuid 508 * @param companyId the company ID 509 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 510 * @return the previous, current, and next asset vocabulary 511 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found 512 * @throws SystemException if a system exception occurred 513 */ 514 public static com.liferay.portlet.asset.model.AssetVocabulary[] findByUuid_C_PrevAndNext( 515 long vocabularyId, java.lang.String uuid, long companyId, 516 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 517 throws com.liferay.portal.kernel.exception.SystemException, 518 com.liferay.portlet.asset.NoSuchVocabularyException { 519 return getPersistence() 520 .findByUuid_C_PrevAndNext(vocabularyId, uuid, companyId, 521 orderByComparator); 522 } 523 524 /** 525 * Returns all the asset vocabularies where groupId = ?. 526 * 527 * @param groupId the group ID 528 * @return the matching asset vocabularies 529 * @throws SystemException if a system exception occurred 530 */ 531 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByGroupId( 532 long groupId) 533 throws com.liferay.portal.kernel.exception.SystemException { 534 return getPersistence().findByGroupId(groupId); 535 } 536 537 /** 538 * Returns a range of all the asset vocabularies where groupId = ?. 539 * 540 * <p> 541 * 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. 542 * </p> 543 * 544 * @param groupId the group ID 545 * @param start the lower bound of the range of asset vocabularies 546 * @param end the upper bound of the range of asset vocabularies (not inclusive) 547 * @return the range of matching asset vocabularies 548 * @throws SystemException if a system exception occurred 549 */ 550 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByGroupId( 551 long groupId, int start, int end) 552 throws com.liferay.portal.kernel.exception.SystemException { 553 return getPersistence().findByGroupId(groupId, start, end); 554 } 555 556 /** 557 * Returns an ordered range of all the asset vocabularies where groupId = ?. 558 * 559 * <p> 560 * 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. 561 * </p> 562 * 563 * @param groupId the group ID 564 * @param start the lower bound of the range of asset vocabularies 565 * @param end the upper bound of the range of asset vocabularies (not inclusive) 566 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 567 * @return the ordered range of matching asset vocabularies 568 * @throws SystemException if a system exception occurred 569 */ 570 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByGroupId( 571 long groupId, int start, int end, 572 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 573 throws com.liferay.portal.kernel.exception.SystemException { 574 return getPersistence() 575 .findByGroupId(groupId, start, end, orderByComparator); 576 } 577 578 /** 579 * Returns the first asset vocabulary in the ordered set where groupId = ?. 580 * 581 * @param groupId the group ID 582 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 583 * @return the first matching asset vocabulary 584 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found 585 * @throws SystemException if a system exception occurred 586 */ 587 public static com.liferay.portlet.asset.model.AssetVocabulary findByGroupId_First( 588 long groupId, 589 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 590 throws com.liferay.portal.kernel.exception.SystemException, 591 com.liferay.portlet.asset.NoSuchVocabularyException { 592 return getPersistence().findByGroupId_First(groupId, orderByComparator); 593 } 594 595 /** 596 * Returns the first asset vocabulary in the ordered set where groupId = ?. 597 * 598 * @param groupId the group ID 599 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 600 * @return the first matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 601 * @throws SystemException if a system exception occurred 602 */ 603 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByGroupId_First( 604 long groupId, 605 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 606 throws com.liferay.portal.kernel.exception.SystemException { 607 return getPersistence().fetchByGroupId_First(groupId, orderByComparator); 608 } 609 610 /** 611 * Returns the last asset vocabulary in the ordered set where groupId = ?. 612 * 613 * @param groupId the group ID 614 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 615 * @return the last matching asset vocabulary 616 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found 617 * @throws SystemException if a system exception occurred 618 */ 619 public static com.liferay.portlet.asset.model.AssetVocabulary findByGroupId_Last( 620 long groupId, 621 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 622 throws com.liferay.portal.kernel.exception.SystemException, 623 com.liferay.portlet.asset.NoSuchVocabularyException { 624 return getPersistence().findByGroupId_Last(groupId, orderByComparator); 625 } 626 627 /** 628 * Returns the last asset vocabulary in the ordered set where groupId = ?. 629 * 630 * @param groupId the group ID 631 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 632 * @return the last matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 633 * @throws SystemException if a system exception occurred 634 */ 635 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByGroupId_Last( 636 long groupId, 637 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 638 throws com.liferay.portal.kernel.exception.SystemException { 639 return getPersistence().fetchByGroupId_Last(groupId, orderByComparator); 640 } 641 642 /** 643 * Returns the asset vocabularies before and after the current asset vocabulary in the ordered set where groupId = ?. 644 * 645 * @param vocabularyId the primary key of the current asset vocabulary 646 * @param groupId the group ID 647 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 648 * @return the previous, current, and next asset vocabulary 649 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found 650 * @throws SystemException if a system exception occurred 651 */ 652 public static com.liferay.portlet.asset.model.AssetVocabulary[] findByGroupId_PrevAndNext( 653 long vocabularyId, long groupId, 654 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 655 throws com.liferay.portal.kernel.exception.SystemException, 656 com.liferay.portlet.asset.NoSuchVocabularyException { 657 return getPersistence() 658 .findByGroupId_PrevAndNext(vocabularyId, groupId, 659 orderByComparator); 660 } 661 662 /** 663 * Returns all the asset vocabularies that the user has permission to view where groupId = ?. 664 * 665 * @param groupId the group ID 666 * @return the matching asset vocabularies that the user has permission to view 667 * @throws SystemException if a system exception occurred 668 */ 669 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByGroupId( 670 long groupId) 671 throws com.liferay.portal.kernel.exception.SystemException { 672 return getPersistence().filterFindByGroupId(groupId); 673 } 674 675 /** 676 * Returns a range of all the asset vocabularies that the user has permission to view where groupId = ?. 677 * 678 * <p> 679 * 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. 680 * </p> 681 * 682 * @param groupId the group ID 683 * @param start the lower bound of the range of asset vocabularies 684 * @param end the upper bound of the range of asset vocabularies (not inclusive) 685 * @return the range of matching asset vocabularies that the user has permission to view 686 * @throws SystemException if a system exception occurred 687 */ 688 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByGroupId( 689 long groupId, int start, int end) 690 throws com.liferay.portal.kernel.exception.SystemException { 691 return getPersistence().filterFindByGroupId(groupId, start, end); 692 } 693 694 /** 695 * Returns an ordered range of all the asset vocabularies that the user has permissions to view where groupId = ?. 696 * 697 * <p> 698 * 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. 699 * </p> 700 * 701 * @param groupId the group ID 702 * @param start the lower bound of the range of asset vocabularies 703 * @param end the upper bound of the range of asset vocabularies (not inclusive) 704 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 705 * @return the ordered range of matching asset vocabularies that the user has permission to view 706 * @throws SystemException if a system exception occurred 707 */ 708 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByGroupId( 709 long groupId, int start, int end, 710 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 711 throws com.liferay.portal.kernel.exception.SystemException { 712 return getPersistence() 713 .filterFindByGroupId(groupId, start, end, orderByComparator); 714 } 715 716 /** 717 * Returns the asset vocabularies before and after the current asset vocabulary in the ordered set of asset vocabularies that the user has permission to view where groupId = ?. 718 * 719 * @param vocabularyId the primary key of the current asset vocabulary 720 * @param groupId the group ID 721 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 722 * @return the previous, current, and next asset vocabulary 723 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found 724 * @throws SystemException if a system exception occurred 725 */ 726 public static com.liferay.portlet.asset.model.AssetVocabulary[] filterFindByGroupId_PrevAndNext( 727 long vocabularyId, long groupId, 728 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 729 throws com.liferay.portal.kernel.exception.SystemException, 730 com.liferay.portlet.asset.NoSuchVocabularyException { 731 return getPersistence() 732 .filterFindByGroupId_PrevAndNext(vocabularyId, groupId, 733 orderByComparator); 734 } 735 736 /** 737 * Returns all the asset vocabularies where companyId = ?. 738 * 739 * @param companyId the company ID 740 * @return the matching asset vocabularies 741 * @throws SystemException if a system exception occurred 742 */ 743 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByCompanyId( 744 long companyId) 745 throws com.liferay.portal.kernel.exception.SystemException { 746 return getPersistence().findByCompanyId(companyId); 747 } 748 749 /** 750 * Returns a range of all the asset vocabularies where companyId = ?. 751 * 752 * <p> 753 * 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. 754 * </p> 755 * 756 * @param companyId the company ID 757 * @param start the lower bound of the range of asset vocabularies 758 * @param end the upper bound of the range of asset vocabularies (not inclusive) 759 * @return the range of matching asset vocabularies 760 * @throws SystemException if a system exception occurred 761 */ 762 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByCompanyId( 763 long companyId, int start, int end) 764 throws com.liferay.portal.kernel.exception.SystemException { 765 return getPersistence().findByCompanyId(companyId, start, end); 766 } 767 768 /** 769 * Returns an ordered range of all the asset vocabularies where companyId = ?. 770 * 771 * <p> 772 * 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. 773 * </p> 774 * 775 * @param companyId the company ID 776 * @param start the lower bound of the range of asset vocabularies 777 * @param end the upper bound of the range of asset vocabularies (not inclusive) 778 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 779 * @return the ordered range of matching asset vocabularies 780 * @throws SystemException if a system exception occurred 781 */ 782 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByCompanyId( 783 long companyId, int start, int end, 784 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 785 throws com.liferay.portal.kernel.exception.SystemException { 786 return getPersistence() 787 .findByCompanyId(companyId, start, end, orderByComparator); 788 } 789 790 /** 791 * Returns the first asset vocabulary in the ordered set where companyId = ?. 792 * 793 * @param companyId the company ID 794 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 795 * @return the first matching asset vocabulary 796 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found 797 * @throws SystemException if a system exception occurred 798 */ 799 public static com.liferay.portlet.asset.model.AssetVocabulary findByCompanyId_First( 800 long companyId, 801 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 802 throws com.liferay.portal.kernel.exception.SystemException, 803 com.liferay.portlet.asset.NoSuchVocabularyException { 804 return getPersistence() 805 .findByCompanyId_First(companyId, orderByComparator); 806 } 807 808 /** 809 * Returns the first asset vocabulary in the ordered set where companyId = ?. 810 * 811 * @param companyId the company ID 812 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 813 * @return the first matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 814 * @throws SystemException if a system exception occurred 815 */ 816 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByCompanyId_First( 817 long companyId, 818 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 819 throws com.liferay.portal.kernel.exception.SystemException { 820 return getPersistence() 821 .fetchByCompanyId_First(companyId, orderByComparator); 822 } 823 824 /** 825 * Returns the last asset vocabulary in the ordered set where companyId = ?. 826 * 827 * @param companyId the company ID 828 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 829 * @return the last matching asset vocabulary 830 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found 831 * @throws SystemException if a system exception occurred 832 */ 833 public static com.liferay.portlet.asset.model.AssetVocabulary findByCompanyId_Last( 834 long companyId, 835 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 836 throws com.liferay.portal.kernel.exception.SystemException, 837 com.liferay.portlet.asset.NoSuchVocabularyException { 838 return getPersistence() 839 .findByCompanyId_Last(companyId, orderByComparator); 840 } 841 842 /** 843 * Returns the last asset vocabulary in the ordered set where companyId = ?. 844 * 845 * @param companyId the company ID 846 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 847 * @return the last matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 848 * @throws SystemException if a system exception occurred 849 */ 850 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByCompanyId_Last( 851 long companyId, 852 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 853 throws com.liferay.portal.kernel.exception.SystemException { 854 return getPersistence() 855 .fetchByCompanyId_Last(companyId, orderByComparator); 856 } 857 858 /** 859 * Returns the asset vocabularies before and after the current asset vocabulary in the ordered set where companyId = ?. 860 * 861 * @param vocabularyId the primary key of the current asset vocabulary 862 * @param companyId the company ID 863 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) 864 * @return the previous, current, and next asset vocabulary 865 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a asset vocabulary with the primary key could not be found 866 * @throws SystemException if a system exception occurred 867 */ 868 public static com.liferay.portlet.asset.model.AssetVocabulary[] findByCompanyId_PrevAndNext( 869 long vocabularyId, long companyId, 870 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 871 throws com.liferay.portal.kernel.exception.SystemException, 872 com.liferay.portlet.asset.NoSuchVocabularyException { 873 return getPersistence() 874 .findByCompanyId_PrevAndNext(vocabularyId, companyId, 875 orderByComparator); 876 } 877 878 /** 879 * Returns the asset vocabulary where groupId = ? and name = ? or throws a {@link com.liferay.portlet.asset.NoSuchVocabularyException} if it could not be found. 880 * 881 * @param groupId the group ID 882 * @param name the name 883 * @return the matching asset vocabulary 884 * @throws com.liferay.portlet.asset.NoSuchVocabularyException if a matching asset vocabulary could not be found 885 * @throws SystemException if a system exception occurred 886 */ 887 public static com.liferay.portlet.asset.model.AssetVocabulary findByG_N( 888 long groupId, java.lang.String name) 889 throws com.liferay.portal.kernel.exception.SystemException, 890 com.liferay.portlet.asset.NoSuchVocabularyException { 891 return getPersistence().findByG_N(groupId, name); 892 } 893 894 /** 895 * Returns the asset vocabulary where groupId = ? and name = ? or returns <code>null</code> if it could not be found. Uses the finder cache. 896 * 897 * @param groupId the group ID 898 * @param name the name 899 * @return the matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 900 * @throws SystemException if a system exception occurred 901 */ 902 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByG_N( 903 long groupId, java.lang.String name) 904 throws com.liferay.portal.kernel.exception.SystemException { 905 return getPersistence().fetchByG_N(groupId, name); 906 } 907 908 /** 909 * Returns the asset vocabulary where groupId = ? and name = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. 910 * 911 * @param groupId the group ID 912 * @param name the name 913 * @param retrieveFromCache whether to use the finder cache 914 * @return the matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found 915 * @throws SystemException if a system exception occurred 916 */ 917 public static com.liferay.portlet.asset.model.AssetVocabulary fetchByG_N( 918 long groupId, java.lang.String name, boolean retrieveFromCache) 919 throws com.liferay.portal.kernel.exception.SystemException { 920 return getPersistence().fetchByG_N(groupId, name, retrieveFromCache); 921 } 922 923 /** 924 * Returns all the asset vocabularies. 925 * 926 * @return the asset vocabularies 927 * @throws SystemException if a system exception occurred 928 */ 929 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findAll() 930 throws com.liferay.portal.kernel.exception.SystemException { 931 return getPersistence().findAll(); 932 } 933 934 /** 935 * Returns a range of all the asset vocabularies. 936 * 937 * <p> 938 * 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. 939 * </p> 940 * 941 * @param start the lower bound of the range of asset vocabularies 942 * @param end the upper bound of the range of asset vocabularies (not inclusive) 943 * @return the range of asset vocabularies 944 * @throws SystemException if a system exception occurred 945 */ 946 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findAll( 947 int start, int end) 948 throws com.liferay.portal.kernel.exception.SystemException { 949 return getPersistence().findAll(start, end); 950 } 951 952 /** 953 * Returns an ordered range of all the asset vocabularies. 954 * 955 * <p> 956 * 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. 957 * </p> 958 * 959 * @param start the lower bound of the range of asset vocabularies 960 * @param end the upper bound of the range of asset vocabularies (not inclusive) 961 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) 962 * @return the ordered range of asset vocabularies 963 * @throws SystemException if a system exception occurred 964 */ 965 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findAll( 966 int start, int end, 967 com.liferay.portal.kernel.util.OrderByComparator orderByComparator) 968 throws com.liferay.portal.kernel.exception.SystemException { 969 return getPersistence().findAll(start, end, orderByComparator); 970 } 971 972 /** 973 * Removes all the asset vocabularies where uuid = ? from the database. 974 * 975 * @param uuid the uuid 976 * @throws SystemException if a system exception occurred 977 */ 978 public static void removeByUuid(java.lang.String uuid) 979 throws com.liferay.portal.kernel.exception.SystemException { 980 getPersistence().removeByUuid(uuid); 981 } 982 983 /** 984 * Removes the asset vocabulary where uuid = ? and groupId = ? from the database. 985 * 986 * @param uuid the uuid 987 * @param groupId the group ID 988 * @return the asset vocabulary that was removed 989 * @throws SystemException if a system exception occurred 990 */ 991 public static com.liferay.portlet.asset.model.AssetVocabulary removeByUUID_G( 992 java.lang.String uuid, long groupId) 993 throws com.liferay.portal.kernel.exception.SystemException, 994 com.liferay.portlet.asset.NoSuchVocabularyException { 995 return getPersistence().removeByUUID_G(uuid, groupId); 996 } 997 998 /** 999 * Removes all the asset vocabularies where uuid = ? and companyId = ? from the database. 1000 * 1001 * @param uuid the uuid 1002 * @param companyId the company ID 1003 * @throws SystemException if a system exception occurred 1004 */ 1005 public static void removeByUuid_C(java.lang.String uuid, long companyId) 1006 throws com.liferay.portal.kernel.exception.SystemException { 1007 getPersistence().removeByUuid_C(uuid, companyId); 1008 } 1009 1010 /** 1011 * Removes all the asset vocabularies where groupId = ? from the database. 1012 * 1013 * @param groupId the group ID 1014 * @throws SystemException if a system exception occurred 1015 */ 1016 public static void removeByGroupId(long groupId) 1017 throws com.liferay.portal.kernel.exception.SystemException { 1018 getPersistence().removeByGroupId(groupId); 1019 } 1020 1021 /** 1022 * Removes all the asset vocabularies where companyId = ? from the database. 1023 * 1024 * @param companyId the company ID 1025 * @throws SystemException if a system exception occurred 1026 */ 1027 public static void removeByCompanyId(long companyId) 1028 throws com.liferay.portal.kernel.exception.SystemException { 1029 getPersistence().removeByCompanyId(companyId); 1030 } 1031 1032 /** 1033 * Removes the asset vocabulary where groupId = ? and name = ? from the database. 1034 * 1035 * @param groupId the group ID 1036 * @param name the name 1037 * @return the asset vocabulary that was removed 1038 * @throws SystemException if a system exception occurred 1039 */ 1040 public static com.liferay.portlet.asset.model.AssetVocabulary removeByG_N( 1041 long groupId, java.lang.String name) 1042 throws com.liferay.portal.kernel.exception.SystemException, 1043 com.liferay.portlet.asset.NoSuchVocabularyException { 1044 return getPersistence().removeByG_N(groupId, name); 1045 } 1046 1047 /** 1048 * Removes all the asset vocabularies from the database. 1049 * 1050 * @throws SystemException if a system exception occurred 1051 */ 1052 public static void removeAll() 1053 throws com.liferay.portal.kernel.exception.SystemException { 1054 getPersistence().removeAll(); 1055 } 1056 1057 /** 1058 * Returns the number of asset vocabularies where uuid = ?. 1059 * 1060 * @param uuid the uuid 1061 * @return the number of matching asset vocabularies 1062 * @throws SystemException if a system exception occurred 1063 */ 1064 public static int countByUuid(java.lang.String uuid) 1065 throws com.liferay.portal.kernel.exception.SystemException { 1066 return getPersistence().countByUuid(uuid); 1067 } 1068 1069 /** 1070 * Returns the number of asset vocabularies where uuid = ? and groupId = ?. 1071 * 1072 * @param uuid the uuid 1073 * @param groupId the group ID 1074 * @return the number of matching asset vocabularies 1075 * @throws SystemException if a system exception occurred 1076 */ 1077 public static int countByUUID_G(java.lang.String uuid, long groupId) 1078 throws com.liferay.portal.kernel.exception.SystemException { 1079 return getPersistence().countByUUID_G(uuid, groupId); 1080 } 1081 1082 /** 1083 * Returns the number of asset vocabularies where uuid = ? and companyId = ?. 1084 * 1085 * @param uuid the uuid 1086 * @param companyId the company ID 1087 * @return the number of matching asset vocabularies 1088 * @throws SystemException if a system exception occurred 1089 */ 1090 public static int countByUuid_C(java.lang.String uuid, long companyId) 1091 throws com.liferay.portal.kernel.exception.SystemException { 1092 return getPersistence().countByUuid_C(uuid, companyId); 1093 } 1094 1095 /** 1096 * Returns the number of asset vocabularies where groupId = ?. 1097 * 1098 * @param groupId the group ID 1099 * @return the number of matching asset vocabularies 1100 * @throws SystemException if a system exception occurred 1101 */ 1102 public static int countByGroupId(long groupId) 1103 throws com.liferay.portal.kernel.exception.SystemException { 1104 return getPersistence().countByGroupId(groupId); 1105 } 1106 1107 /** 1108 * Returns the number of asset vocabularies that the user has permission to view where groupId = ?. 1109 * 1110 * @param groupId the group ID 1111 * @return the number of matching asset vocabularies that the user has permission to view 1112 * @throws SystemException if a system exception occurred 1113 */ 1114 public static int filterCountByGroupId(long groupId) 1115 throws com.liferay.portal.kernel.exception.SystemException { 1116 return getPersistence().filterCountByGroupId(groupId); 1117 } 1118 1119 /** 1120 * Returns the number of asset vocabularies where companyId = ?. 1121 * 1122 * @param companyId the company ID 1123 * @return the number of matching asset vocabularies 1124 * @throws SystemException if a system exception occurred 1125 */ 1126 public static int countByCompanyId(long companyId) 1127 throws com.liferay.portal.kernel.exception.SystemException { 1128 return getPersistence().countByCompanyId(companyId); 1129 } 1130 1131 /** 1132 * Returns the number of asset vocabularies where groupId = ? and name = ?. 1133 * 1134 * @param groupId the group ID 1135 * @param name the name 1136 * @return the number of matching asset vocabularies 1137 * @throws SystemException if a system exception occurred 1138 */ 1139 public static int countByG_N(long groupId, java.lang.String name) 1140 throws com.liferay.portal.kernel.exception.SystemException { 1141 return getPersistence().countByG_N(groupId, name); 1142 } 1143 1144 /** 1145 * Returns the number of asset vocabularies. 1146 * 1147 * @return the number of asset vocabularies 1148 * @throws SystemException if a system exception occurred 1149 */ 1150 public static int countAll() 1151 throws com.liferay.portal.kernel.exception.SystemException { 1152 return getPersistence().countAll(); 1153 } 1154 1155 public static AssetVocabularyPersistence getPersistence() { 1156 if (_persistence == null) { 1157 _persistence = (AssetVocabularyPersistence)PortalBeanLocatorUtil.locate(AssetVocabularyPersistence.class.getName()); 1158 1159 ReferenceRegistry.registerReference(AssetVocabularyUtil.class, 1160 "_persistence"); 1161 } 1162 1163 return _persistence; 1164 } 1165 1166 /** 1167 * @deprecated 1168 */ 1169 public void setPersistence(AssetVocabularyPersistence persistence) { 1170 } 1171 1172 private static AssetVocabularyPersistence _persistence; 1173 }