All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.portal.service.persistence.GroupUtil Maven / Gradle / Ivy

Go to download

Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.

There is a newer version: 7.0.0-nightly
Show newest version
/**
 * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.portal.service.persistence;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
import com.liferay.portal.kernel.dao.orm.DynamicQuery;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.util.OrderByComparator;
import com.liferay.portal.kernel.util.ReferenceRegistry;
import com.liferay.portal.model.Group;
import com.liferay.portal.service.ServiceContext;

import java.util.List;

/**
 * The persistence utility for the group service. This utility wraps {@link GroupPersistenceImpl} and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
 *
 * 

* Caching information and settings can be found in portal.properties *

* * @author Brian Wing Shun Chan * @see GroupPersistence * @see GroupPersistenceImpl * @generated */ @ProviderType public class GroupUtil { /* * NOTE FOR DEVELOPERS: * * Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regenerate this class. */ /** * @see com.liferay.portal.service.persistence.BasePersistence#clearCache() */ public static void clearCache() { getPersistence().clearCache(); } /** * @see com.liferay.portal.service.persistence.BasePersistence#clearCache(com.liferay.portal.model.BaseModel) */ public static void clearCache(Group group) { getPersistence().clearCache(group); } /** * @see com.liferay.portal.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery) */ public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException { return getPersistence().countWithDynamicQuery(dynamicQuery); } /** * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery) */ public static List findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException { return getPersistence().findWithDynamicQuery(dynamicQuery); } /** * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int) */ public static List findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException { return getPersistence().findWithDynamicQuery(dynamicQuery, start, end); } /** * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator) */ public static List findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException { return getPersistence() .findWithDynamicQuery(dynamicQuery, start, end, orderByComparator); } /** * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel) */ public static Group update(Group group) throws SystemException { return getPersistence().update(group); } /** * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, ServiceContext) */ public static Group update(Group group, ServiceContext serviceContext) throws SystemException { return getPersistence().update(group, serviceContext); } /** * Returns all the groups where uuid = ?. * * @param uuid the uuid * @return the matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByUuid( java.lang.String uuid) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByUuid(uuid); } /** * Returns a range of all the groups where uuid = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param uuid the uuid * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByUuid( java.lang.String uuid, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByUuid(uuid, start, end); } /** * Returns an ordered range of all the groups where uuid = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param uuid the uuid * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByUuid( java.lang.String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByUuid(uuid, start, end, orderByComparator); } /** * Returns the first group in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByUuid_First( java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByUuid_First(uuid, orderByComparator); } /** * Returns the first group in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByUuid_First( java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByUuid_First(uuid, orderByComparator); } /** * Returns the last group in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByUuid_Last( java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByUuid_Last(uuid, orderByComparator); } /** * Returns the last group in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByUuid_Last( java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByUuid_Last(uuid, orderByComparator); } /** * Returns the groups before and after the current group in the ordered set where uuid = ?. * * @param groupId the primary key of the current group * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next group * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group[] findByUuid_PrevAndNext( long groupId, java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByUuid_PrevAndNext(groupId, uuid, orderByComparator); } /** * Removes all the groups where uuid = ? from the database. * * @param uuid the uuid * @throws SystemException if a system exception occurred */ public static void removeByUuid(java.lang.String uuid) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByUuid(uuid); } /** * Returns the number of groups where uuid = ?. * * @param uuid the uuid * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByUuid(java.lang.String uuid) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByUuid(uuid); } /** * Returns the group where uuid = ? and groupId = ? or throws a {@link com.liferay.portal.NoSuchGroupException} if it could not be found. * * @param uuid the uuid * @param groupId the group ID * @return the matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByUUID_G( java.lang.String uuid, long groupId) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByUUID_G(uuid, groupId); } /** * Returns the group where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache. * * @param uuid the uuid * @param groupId the group ID * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByUUID_G( java.lang.String uuid, long groupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByUUID_G(uuid, groupId); } /** * Returns the group where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache. * * @param uuid the uuid * @param groupId the group ID * @param retrieveFromCache whether to use the finder cache * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByUUID_G( java.lang.String uuid, long groupId, boolean retrieveFromCache) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByUUID_G(uuid, groupId, retrieveFromCache); } /** * Removes the group where uuid = ? and groupId = ? from the database. * * @param uuid the uuid * @param groupId the group ID * @return the group that was removed * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group removeByUUID_G( java.lang.String uuid, long groupId) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().removeByUUID_G(uuid, groupId); } /** * Returns the number of groups where uuid = ? and groupId = ?. * * @param uuid the uuid * @param groupId the group ID * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByUUID_G(java.lang.String uuid, long groupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByUUID_G(uuid, groupId); } /** * Returns all the groups where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByUuid_C( java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByUuid_C(uuid, companyId); } /** * Returns a range of all the groups where uuid = ? and companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByUuid_C( java.lang.String uuid, long companyId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByUuid_C(uuid, companyId, start, end); } /** * Returns an ordered range of all the groups where uuid = ? and companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByUuid_C( java.lang.String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByUuid_C(uuid, companyId, start, end, orderByComparator); } /** * Returns the first group in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByUuid_C_First( java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByUuid_C_First(uuid, companyId, orderByComparator); } /** * Returns the first group in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByUuid_C_First( java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByUuid_C_First(uuid, companyId, orderByComparator); } /** * Returns the last group in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByUuid_C_Last( java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByUuid_C_Last(uuid, companyId, orderByComparator); } /** * Returns the last group in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByUuid_C_Last( java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByUuid_C_Last(uuid, companyId, orderByComparator); } /** * Returns the groups before and after the current group in the ordered set where uuid = ? and companyId = ?. * * @param groupId the primary key of the current group * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next group * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group[] findByUuid_C_PrevAndNext( long groupId, java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByUuid_C_PrevAndNext(groupId, uuid, companyId, orderByComparator); } /** * Removes all the groups where uuid = ? and companyId = ? from the database. * * @param uuid the uuid * @param companyId the company ID * @throws SystemException if a system exception occurred */ public static void removeByUuid_C(java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByUuid_C(uuid, companyId); } /** * Returns the number of groups where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByUuid_C(java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByUuid_C(uuid, companyId); } /** * Returns all the groups where companyId = ?. * * @param companyId the company ID * @return the matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByCompanyId( long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByCompanyId(companyId); } /** * Returns a range of all the groups where companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByCompanyId( long companyId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByCompanyId(companyId, start, end); } /** * Returns an ordered range of all the groups where companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByCompanyId( long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByCompanyId(companyId, start, end, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByCompanyId_First( long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByCompanyId_First(companyId, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByCompanyId_First( long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByCompanyId_First(companyId, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByCompanyId_Last( long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByCompanyId_Last(companyId, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByCompanyId_Last( long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByCompanyId_Last(companyId, orderByComparator); } /** * Returns the groups before and after the current group in the ordered set where companyId = ?. * * @param groupId the primary key of the current group * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next group * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group[] findByCompanyId_PrevAndNext( long groupId, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByCompanyId_PrevAndNext(groupId, companyId, orderByComparator); } /** * Removes all the groups where companyId = ? from the database. * * @param companyId the company ID * @throws SystemException if a system exception occurred */ public static void removeByCompanyId(long companyId) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByCompanyId(companyId); } /** * Returns the number of groups where companyId = ?. * * @param companyId the company ID * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByCompanyId(long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByCompanyId(companyId); } /** * Returns the group where liveGroupId = ? or throws a {@link com.liferay.portal.NoSuchGroupException} if it could not be found. * * @param liveGroupId the live group ID * @return the matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByLiveGroupId( long liveGroupId) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByLiveGroupId(liveGroupId); } /** * Returns the group where liveGroupId = ? or returns null if it could not be found. Uses the finder cache. * * @param liveGroupId the live group ID * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByLiveGroupId( long liveGroupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByLiveGroupId(liveGroupId); } /** * Returns the group where liveGroupId = ? or returns null if it could not be found, optionally using the finder cache. * * @param liveGroupId the live group ID * @param retrieveFromCache whether to use the finder cache * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByLiveGroupId( long liveGroupId, boolean retrieveFromCache) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByLiveGroupId(liveGroupId, retrieveFromCache); } /** * Removes the group where liveGroupId = ? from the database. * * @param liveGroupId the live group ID * @return the group that was removed * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group removeByLiveGroupId( long liveGroupId) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().removeByLiveGroupId(liveGroupId); } /** * Returns the number of groups where liveGroupId = ?. * * @param liveGroupId the live group ID * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByLiveGroupId(long liveGroupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByLiveGroupId(liveGroupId); } /** * Returns all the groups where companyId = ? and classNameId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @return the matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_C( long companyId, long classNameId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_C(companyId, classNameId); } /** * Returns a range of all the groups where companyId = ? and classNameId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param classNameId the class name ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_C( long companyId, long classNameId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_C(companyId, classNameId, start, end); } /** * Returns an ordered range of all the groups where companyId = ? and classNameId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param classNameId the class name ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_C( long companyId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C(companyId, classNameId, start, end, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ? and classNameId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_C_First( long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C_First(companyId, classNameId, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ? and classNameId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_C_First( long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_C_First(companyId, classNameId, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ? and classNameId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_C_Last( long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C_Last(companyId, classNameId, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ? and classNameId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_C_Last( long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_C_Last(companyId, classNameId, orderByComparator); } /** * Returns the groups before and after the current group in the ordered set where companyId = ? and classNameId = ?. * * @param groupId the primary key of the current group * @param companyId the company ID * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next group * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group[] findByC_C_PrevAndNext( long groupId, long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C_PrevAndNext(groupId, companyId, classNameId, orderByComparator); } /** * Removes all the groups where companyId = ? and classNameId = ? from the database. * * @param companyId the company ID * @param classNameId the class name ID * @throws SystemException if a system exception occurred */ public static void removeByC_C(long companyId, long classNameId) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByC_C(companyId, classNameId); } /** * Returns the number of groups where companyId = ? and classNameId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByC_C(long companyId, long classNameId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByC_C(companyId, classNameId); } /** * Returns all the groups where companyId = ? and parentGroupId = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @return the matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_P( long companyId, long parentGroupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_P(companyId, parentGroupId); } /** * Returns a range of all the groups where companyId = ? and parentGroupId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param parentGroupId the parent group ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_P( long companyId, long parentGroupId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_P(companyId, parentGroupId, start, end); } /** * Returns an ordered range of all the groups where companyId = ? and parentGroupId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param parentGroupId the parent group ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_P( long companyId, long parentGroupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P(companyId, parentGroupId, start, end, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ? and parentGroupId = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_P_First( long companyId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_First(companyId, parentGroupId, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ? and parentGroupId = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_P_First( long companyId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_P_First(companyId, parentGroupId, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ? and parentGroupId = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_P_Last( long companyId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_Last(companyId, parentGroupId, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ? and parentGroupId = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_P_Last( long companyId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_P_Last(companyId, parentGroupId, orderByComparator); } /** * Returns the groups before and after the current group in the ordered set where companyId = ? and parentGroupId = ?. * * @param groupId the primary key of the current group * @param companyId the company ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next group * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group[] findByC_P_PrevAndNext( long groupId, long companyId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_PrevAndNext(groupId, companyId, parentGroupId, orderByComparator); } /** * Removes all the groups where companyId = ? and parentGroupId = ? from the database. * * @param companyId the company ID * @param parentGroupId the parent group ID * @throws SystemException if a system exception occurred */ public static void removeByC_P(long companyId, long parentGroupId) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByC_P(companyId, parentGroupId); } /** * Returns the number of groups where companyId = ? and parentGroupId = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByC_P(long companyId, long parentGroupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByC_P(companyId, parentGroupId); } /** * Returns the group where companyId = ? and name = ? or throws a {@link com.liferay.portal.NoSuchGroupException} if it could not be found. * * @param companyId the company ID * @param name the name * @return the matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_N(long companyId, java.lang.String name) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_N(companyId, name); } /** * Returns the group where companyId = ? and name = ? or returns null if it could not be found. Uses the finder cache. * * @param companyId the company ID * @param name the name * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_N(long companyId, java.lang.String name) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByC_N(companyId, name); } /** * Returns the group where companyId = ? and name = ? or returns null if it could not be found, optionally using the finder cache. * * @param companyId the company ID * @param name the name * @param retrieveFromCache whether to use the finder cache * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_N(long companyId, java.lang.String name, boolean retrieveFromCache) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByC_N(companyId, name, retrieveFromCache); } /** * Removes the group where companyId = ? and name = ? from the database. * * @param companyId the company ID * @param name the name * @return the group that was removed * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group removeByC_N(long companyId, java.lang.String name) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().removeByC_N(companyId, name); } /** * Returns the number of groups where companyId = ? and name = ?. * * @param companyId the company ID * @param name the name * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByC_N(long companyId, java.lang.String name) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByC_N(companyId, name); } /** * Returns the group where companyId = ? and friendlyURL = ? or throws a {@link com.liferay.portal.NoSuchGroupException} if it could not be found. * * @param companyId the company ID * @param friendlyURL the friendly u r l * @return the matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_F(long companyId, java.lang.String friendlyURL) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_F(companyId, friendlyURL); } /** * Returns the group where companyId = ? and friendlyURL = ? or returns null if it could not be found. Uses the finder cache. * * @param companyId the company ID * @param friendlyURL the friendly u r l * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_F(long companyId, java.lang.String friendlyURL) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByC_F(companyId, friendlyURL); } /** * Returns the group where companyId = ? and friendlyURL = ? or returns null if it could not be found, optionally using the finder cache. * * @param companyId the company ID * @param friendlyURL the friendly u r l * @param retrieveFromCache whether to use the finder cache * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_F(long companyId, java.lang.String friendlyURL, boolean retrieveFromCache) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_F(companyId, friendlyURL, retrieveFromCache); } /** * Removes the group where companyId = ? and friendlyURL = ? from the database. * * @param companyId the company ID * @param friendlyURL the friendly u r l * @return the group that was removed * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group removeByC_F(long companyId, java.lang.String friendlyURL) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().removeByC_F(companyId, friendlyURL); } /** * Returns the number of groups where companyId = ? and friendlyURL = ?. * * @param companyId the company ID * @param friendlyURL the friendly u r l * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByC_F(long companyId, java.lang.String friendlyURL) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByC_F(companyId, friendlyURL); } /** * Returns all the groups where companyId = ? and site = ?. * * @param companyId the company ID * @param site the site * @return the matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_S( long companyId, boolean site) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_S(companyId, site); } /** * Returns a range of all the groups where companyId = ? and site = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param site the site * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_S( long companyId, boolean site, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_S(companyId, site, start, end); } /** * Returns an ordered range of all the groups where companyId = ? and site = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param site the site * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_S( long companyId, boolean site, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_S(companyId, site, start, end, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ? and site = ?. * * @param companyId the company ID * @param site the site * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_S_First( long companyId, boolean site, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_S_First(companyId, site, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ? and site = ?. * * @param companyId the company ID * @param site the site * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_S_First( long companyId, boolean site, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_S_First(companyId, site, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ? and site = ?. * * @param companyId the company ID * @param site the site * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_S_Last( long companyId, boolean site, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_S_Last(companyId, site, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ? and site = ?. * * @param companyId the company ID * @param site the site * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_S_Last( long companyId, boolean site, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_S_Last(companyId, site, orderByComparator); } /** * Returns the groups before and after the current group in the ordered set where companyId = ? and site = ?. * * @param groupId the primary key of the current group * @param companyId the company ID * @param site the site * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next group * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group[] findByC_S_PrevAndNext( long groupId, long companyId, boolean site, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_S_PrevAndNext(groupId, companyId, site, orderByComparator); } /** * Removes all the groups where companyId = ? and site = ? from the database. * * @param companyId the company ID * @param site the site * @throws SystemException if a system exception occurred */ public static void removeByC_S(long companyId, boolean site) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByC_S(companyId, site); } /** * Returns the number of groups where companyId = ? and site = ?. * * @param companyId the company ID * @param site the site * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByC_S(long companyId, boolean site) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByC_S(companyId, site); } /** * Returns all the groups where type = ? and active = ?. * * @param type the type * @param active the active * @return the matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByT_A( int type, boolean active) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByT_A(type, active); } /** * Returns a range of all the groups where type = ? and active = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param type the type * @param active the active * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByT_A( int type, boolean active, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByT_A(type, active, start, end); } /** * Returns an ordered range of all the groups where type = ? and active = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param type the type * @param active the active * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByT_A( int type, boolean active, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByT_A(type, active, start, end, orderByComparator); } /** * Returns the first group in the ordered set where type = ? and active = ?. * * @param type the type * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByT_A_First(int type, boolean active, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByT_A_First(type, active, orderByComparator); } /** * Returns the first group in the ordered set where type = ? and active = ?. * * @param type the type * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByT_A_First(int type, boolean active, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByT_A_First(type, active, orderByComparator); } /** * Returns the last group in the ordered set where type = ? and active = ?. * * @param type the type * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByT_A_Last(int type, boolean active, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByT_A_Last(type, active, orderByComparator); } /** * Returns the last group in the ordered set where type = ? and active = ?. * * @param type the type * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByT_A_Last(int type, boolean active, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByT_A_Last(type, active, orderByComparator); } /** * Returns the groups before and after the current group in the ordered set where type = ? and active = ?. * * @param groupId the primary key of the current group * @param type the type * @param active the active * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next group * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group[] findByT_A_PrevAndNext( long groupId, int type, boolean active, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByT_A_PrevAndNext(groupId, type, active, orderByComparator); } /** * Removes all the groups where type = ? and active = ? from the database. * * @param type the type * @param active the active * @throws SystemException if a system exception occurred */ public static void removeByT_A(int type, boolean active) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByT_A(type, active); } /** * Returns the number of groups where type = ? and active = ?. * * @param type the type * @param active the active * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByT_A(int type, boolean active) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByT_A(type, active); } /** * Returns all the groups where groupId > ? and companyId = ? and parentGroupId = ?. * * @param groupId the group ID * @param companyId the company ID * @param parentGroupId the parent group ID * @return the matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByG_C_P( long groupId, long companyId, long parentGroupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByG_C_P(groupId, companyId, parentGroupId); } /** * Returns a range of all the groups where groupId > ? and companyId = ? and parentGroupId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param groupId the group ID * @param companyId the company ID * @param parentGroupId the parent group ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByG_C_P( long groupId, long companyId, long parentGroupId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByG_C_P(groupId, companyId, parentGroupId, start, end); } /** * Returns an ordered range of all the groups where groupId > ? and companyId = ? and parentGroupId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param groupId the group ID * @param companyId the company ID * @param parentGroupId the parent group ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByG_C_P( long groupId, long companyId, long parentGroupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByG_C_P(groupId, companyId, parentGroupId, start, end, orderByComparator); } /** * Returns the first group in the ordered set where groupId > ? and companyId = ? and parentGroupId = ?. * * @param groupId the group ID * @param companyId the company ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByG_C_P_First( long groupId, long companyId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByG_C_P_First(groupId, companyId, parentGroupId, orderByComparator); } /** * Returns the first group in the ordered set where groupId > ? and companyId = ? and parentGroupId = ?. * * @param groupId the group ID * @param companyId the company ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByG_C_P_First( long groupId, long companyId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByG_C_P_First(groupId, companyId, parentGroupId, orderByComparator); } /** * Returns the last group in the ordered set where groupId > ? and companyId = ? and parentGroupId = ?. * * @param groupId the group ID * @param companyId the company ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByG_C_P_Last( long groupId, long companyId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByG_C_P_Last(groupId, companyId, parentGroupId, orderByComparator); } /** * Returns the last group in the ordered set where groupId > ? and companyId = ? and parentGroupId = ?. * * @param groupId the group ID * @param companyId the company ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByG_C_P_Last( long groupId, long companyId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByG_C_P_Last(groupId, companyId, parentGroupId, orderByComparator); } /** * Removes all the groups where groupId > ? and companyId = ? and parentGroupId = ? from the database. * * @param groupId the group ID * @param companyId the company ID * @param parentGroupId the parent group ID * @throws SystemException if a system exception occurred */ public static void removeByG_C_P(long groupId, long companyId, long parentGroupId) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByG_C_P(groupId, companyId, parentGroupId); } /** * Returns the number of groups where groupId > ? and companyId = ? and parentGroupId = ?. * * @param groupId the group ID * @param companyId the company ID * @param parentGroupId the parent group ID * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByG_C_P(long groupId, long companyId, long parentGroupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByG_C_P(groupId, companyId, parentGroupId); } /** * Returns the group where companyId = ? and classNameId = ? and classPK = ? or throws a {@link com.liferay.portal.NoSuchGroupException} if it could not be found. * * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class p k * @return the matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_C_C(long companyId, long classNameId, long classPK) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_C_C(companyId, classNameId, classPK); } /** * Returns the group where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found. Uses the finder cache. * * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class p k * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_C_C(long companyId, long classNameId, long classPK) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByC_C_C(companyId, classNameId, classPK); } /** * Returns the group where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache. * * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class p k * @param retrieveFromCache whether to use the finder cache * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_C_C(long companyId, long classNameId, long classPK, boolean retrieveFromCache) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_C_C(companyId, classNameId, classPK, retrieveFromCache); } /** * Removes the group where companyId = ? and classNameId = ? and classPK = ? from the database. * * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class p k * @return the group that was removed * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group removeByC_C_C(long companyId, long classNameId, long classPK) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().removeByC_C_C(companyId, classNameId, classPK); } /** * Returns the number of groups where companyId = ? and classNameId = ? and classPK = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class p k * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByC_C_C(long companyId, long classNameId, long classPK) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByC_C_C(companyId, classNameId, classPK); } /** * Returns all the groups where companyId = ? and classNameId = ? and parentGroupId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param parentGroupId the parent group ID * @return the matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_C_P( long companyId, long classNameId, long parentGroupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C_P(companyId, classNameId, parentGroupId); } /** * Returns a range of all the groups where companyId = ? and classNameId = ? and parentGroupId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param classNameId the class name ID * @param parentGroupId the parent group ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_C_P( long companyId, long classNameId, long parentGroupId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C_P(companyId, classNameId, parentGroupId, start, end); } /** * Returns an ordered range of all the groups where companyId = ? and classNameId = ? and parentGroupId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param classNameId the class name ID * @param parentGroupId the parent group ID * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_C_P( long companyId, long classNameId, long parentGroupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C_P(companyId, classNameId, parentGroupId, start, end, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ? and classNameId = ? and parentGroupId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_C_P_First( long companyId, long classNameId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C_P_First(companyId, classNameId, parentGroupId, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ? and classNameId = ? and parentGroupId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_C_P_First( long companyId, long classNameId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_C_P_First(companyId, classNameId, parentGroupId, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ? and classNameId = ? and parentGroupId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_C_P_Last( long companyId, long classNameId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C_P_Last(companyId, classNameId, parentGroupId, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ? and classNameId = ? and parentGroupId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_C_P_Last( long companyId, long classNameId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_C_P_Last(companyId, classNameId, parentGroupId, orderByComparator); } /** * Returns the groups before and after the current group in the ordered set where companyId = ? and classNameId = ? and parentGroupId = ?. * * @param groupId the primary key of the current group * @param companyId the company ID * @param classNameId the class name ID * @param parentGroupId the parent group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next group * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group[] findByC_C_P_PrevAndNext( long groupId, long companyId, long classNameId, long parentGroupId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C_P_PrevAndNext(groupId, companyId, classNameId, parentGroupId, orderByComparator); } /** * Removes all the groups where companyId = ? and classNameId = ? and parentGroupId = ? from the database. * * @param companyId the company ID * @param classNameId the class name ID * @param parentGroupId the parent group ID * @throws SystemException if a system exception occurred */ public static void removeByC_C_P(long companyId, long classNameId, long parentGroupId) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByC_C_P(companyId, classNameId, parentGroupId); } /** * Returns the number of groups where companyId = ? and classNameId = ? and parentGroupId = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param parentGroupId the parent group ID * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByC_C_P(long companyId, long classNameId, long parentGroupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .countByC_C_P(companyId, classNameId, parentGroupId); } /** * Returns all the groups where companyId = ? and parentGroupId = ? and site = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param site the site * @return the matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_P_S( long companyId, long parentGroupId, boolean site) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_P_S(companyId, parentGroupId, site); } /** * Returns a range of all the groups where companyId = ? and parentGroupId = ? and site = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param parentGroupId the parent group ID * @param site the site * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_P_S( long companyId, long parentGroupId, boolean site, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_S(companyId, parentGroupId, site, start, end); } /** * Returns an ordered range of all the groups where companyId = ? and parentGroupId = ? and site = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param companyId the company ID * @param parentGroupId the parent group ID * @param site the site * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching groups * @throws SystemException if a system exception occurred */ public static java.util.List findByC_P_S( long companyId, long parentGroupId, boolean site, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_S(companyId, parentGroupId, site, start, end, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ? and parentGroupId = ? and site = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param site the site * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_P_S_First( long companyId, long parentGroupId, boolean site, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_S_First(companyId, parentGroupId, site, orderByComparator); } /** * Returns the first group in the ordered set where companyId = ? and parentGroupId = ? and site = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param site the site * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_P_S_First( long companyId, long parentGroupId, boolean site, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_P_S_First(companyId, parentGroupId, site, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ? and parentGroupId = ? and site = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param site the site * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_P_S_Last( long companyId, long parentGroupId, boolean site, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_S_Last(companyId, parentGroupId, site, orderByComparator); } /** * Returns the last group in the ordered set where companyId = ? and parentGroupId = ? and site = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param site the site * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_P_S_Last( long companyId, long parentGroupId, boolean site, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_P_S_Last(companyId, parentGroupId, site, orderByComparator); } /** * Returns the groups before and after the current group in the ordered set where companyId = ? and parentGroupId = ? and site = ?. * * @param groupId the primary key of the current group * @param companyId the company ID * @param parentGroupId the parent group ID * @param site the site * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next group * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group[] findByC_P_S_PrevAndNext( long groupId, long companyId, long parentGroupId, boolean site, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_S_PrevAndNext(groupId, companyId, parentGroupId, site, orderByComparator); } /** * Removes all the groups where companyId = ? and parentGroupId = ? and site = ? from the database. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param site the site * @throws SystemException if a system exception occurred */ public static void removeByC_P_S(long companyId, long parentGroupId, boolean site) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByC_P_S(companyId, parentGroupId, site); } /** * Returns the number of groups where companyId = ? and parentGroupId = ? and site = ?. * * @param companyId the company ID * @param parentGroupId the parent group ID * @param site the site * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByC_P_S(long companyId, long parentGroupId, boolean site) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByC_P_S(companyId, parentGroupId, site); } /** * Returns the group where companyId = ? and liveGroupId = ? and name = ? or throws a {@link com.liferay.portal.NoSuchGroupException} if it could not be found. * * @param companyId the company ID * @param liveGroupId the live group ID * @param name the name * @return the matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_L_N(long companyId, long liveGroupId, java.lang.String name) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_L_N(companyId, liveGroupId, name); } /** * Returns the group where companyId = ? and liveGroupId = ? and name = ? or returns null if it could not be found. Uses the finder cache. * * @param companyId the company ID * @param liveGroupId the live group ID * @param name the name * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_L_N(long companyId, long liveGroupId, java.lang.String name) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByC_L_N(companyId, liveGroupId, name); } /** * Returns the group where companyId = ? and liveGroupId = ? and name = ? or returns null if it could not be found, optionally using the finder cache. * * @param companyId the company ID * @param liveGroupId the live group ID * @param name the name * @param retrieveFromCache whether to use the finder cache * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_L_N(long companyId, long liveGroupId, java.lang.String name, boolean retrieveFromCache) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_L_N(companyId, liveGroupId, name, retrieveFromCache); } /** * Removes the group where companyId = ? and liveGroupId = ? and name = ? from the database. * * @param companyId the company ID * @param liveGroupId the live group ID * @param name the name * @return the group that was removed * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group removeByC_L_N(long companyId, long liveGroupId, java.lang.String name) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().removeByC_L_N(companyId, liveGroupId, name); } /** * Returns the number of groups where companyId = ? and liveGroupId = ? and name = ?. * * @param companyId the company ID * @param liveGroupId the live group ID * @param name the name * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByC_L_N(long companyId, long liveGroupId, java.lang.String name) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByC_L_N(companyId, liveGroupId, name); } /** * Returns the group where companyId = ? and classNameId = ? and liveGroupId = ? and name = ? or throws a {@link com.liferay.portal.NoSuchGroupException} if it could not be found. * * @param companyId the company ID * @param classNameId the class name ID * @param liveGroupId the live group ID * @param name the name * @return the matching group * @throws com.liferay.portal.NoSuchGroupException if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByC_C_L_N(long companyId, long classNameId, long liveGroupId, java.lang.String name) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_C_L_N(companyId, classNameId, liveGroupId, name); } /** * Returns the group where companyId = ? and classNameId = ? and liveGroupId = ? and name = ? or returns null if it could not be found. Uses the finder cache. * * @param companyId the company ID * @param classNameId the class name ID * @param liveGroupId the live group ID * @param name the name * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_C_L_N( long companyId, long classNameId, long liveGroupId, java.lang.String name) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_C_L_N(companyId, classNameId, liveGroupId, name); } /** * Returns the group where companyId = ? and classNameId = ? and liveGroupId = ? and name = ? or returns null if it could not be found, optionally using the finder cache. * * @param companyId the company ID * @param classNameId the class name ID * @param liveGroupId the live group ID * @param name the name * @param retrieveFromCache whether to use the finder cache * @return the matching group, or null if a matching group could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByC_C_L_N( long companyId, long classNameId, long liveGroupId, java.lang.String name, boolean retrieveFromCache) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_C_L_N(companyId, classNameId, liveGroupId, name, retrieveFromCache); } /** * Removes the group where companyId = ? and classNameId = ? and liveGroupId = ? and name = ? from the database. * * @param companyId the company ID * @param classNameId the class name ID * @param liveGroupId the live group ID * @param name the name * @return the group that was removed * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group removeByC_C_L_N( long companyId, long classNameId, long liveGroupId, java.lang.String name) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .removeByC_C_L_N(companyId, classNameId, liveGroupId, name); } /** * Returns the number of groups where companyId = ? and classNameId = ? and liveGroupId = ? and name = ?. * * @param companyId the company ID * @param classNameId the class name ID * @param liveGroupId the live group ID * @param name the name * @return the number of matching groups * @throws SystemException if a system exception occurred */ public static int countByC_C_L_N(long companyId, long classNameId, long liveGroupId, java.lang.String name) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .countByC_C_L_N(companyId, classNameId, liveGroupId, name); } /** * Caches the group in the entity cache if it is enabled. * * @param group the group */ public static void cacheResult(com.liferay.portal.model.Group group) { getPersistence().cacheResult(group); } /** * Caches the groups in the entity cache if it is enabled. * * @param groups the groups */ public static void cacheResult( java.util.List groups) { getPersistence().cacheResult(groups); } /** * Creates a new group with the primary key. Does not add the group to the database. * * @param groupId the primary key for the new group * @return the new group */ public static com.liferay.portal.model.Group create(long groupId) { return getPersistence().create(groupId); } /** * Removes the group with the primary key from the database. Also notifies the appropriate model listeners. * * @param groupId the primary key of the group * @return the group that was removed * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group remove(long groupId) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().remove(groupId); } public static com.liferay.portal.model.Group updateImpl( com.liferay.portal.model.Group group) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().updateImpl(group); } /** * Returns the group with the primary key or throws a {@link com.liferay.portal.NoSuchGroupException} if it could not be found. * * @param groupId the primary key of the group * @return the group * @throws com.liferay.portal.NoSuchGroupException if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group findByPrimaryKey(long groupId) throws com.liferay.portal.NoSuchGroupException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByPrimaryKey(groupId); } /** * Returns the group with the primary key or returns null if it could not be found. * * @param groupId the primary key of the group * @return the group, or null if a group with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Group fetchByPrimaryKey(long groupId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByPrimaryKey(groupId); } /** * Returns all the groups. * * @return the groups * @throws SystemException if a system exception occurred */ public static java.util.List findAll() throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findAll(); } /** * Returns a range of all the groups. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of groups * @throws SystemException if a system exception occurred */ public static java.util.List findAll( int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findAll(start, end); } /** * Returns an ordered range of all the groups. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of groups * @throws SystemException if a system exception occurred */ public static java.util.List findAll( int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findAll(start, end, orderByComparator); } /** * Removes all the groups from the database. * * @throws SystemException if a system exception occurred */ public static void removeAll() throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeAll(); } /** * Returns the number of groups. * * @return the number of groups * @throws SystemException if a system exception occurred */ public static int countAll() throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countAll(); } /** * Returns all the organizations associated with the group. * * @param pk the primary key of the group * @return the organizations associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getOrganizations( long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getOrganizations(pk); } /** * Returns a range of all the organizations associated with the group. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param pk the primary key of the group * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of organizations associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getOrganizations( long pk, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getOrganizations(pk, start, end); } /** * Returns an ordered range of all the organizations associated with the group. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param pk the primary key of the group * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of organizations associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getOrganizations( long pk, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .getOrganizations(pk, start, end, orderByComparator); } /** * Returns the number of organizations associated with the group. * * @param pk the primary key of the group * @return the number of organizations associated with the group * @throws SystemException if a system exception occurred */ public static int getOrganizationsSize(long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getOrganizationsSize(pk); } /** * Returns true if the organization is associated with the group. * * @param pk the primary key of the group * @param organizationPK the primary key of the organization * @return true if the organization is associated with the group; false otherwise * @throws SystemException if a system exception occurred */ public static boolean containsOrganization(long pk, long organizationPK) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().containsOrganization(pk, organizationPK); } /** * Returns true if the group has any organizations associated with it. * * @param pk the primary key of the group to check for associations with organizations * @return true if the group has any organizations associated with it; false otherwise * @throws SystemException if a system exception occurred */ public static boolean containsOrganizations(long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().containsOrganizations(pk); } /** * Adds an association between the group and the organization. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param organizationPK the primary key of the organization * @throws SystemException if a system exception occurred */ public static void addOrganization(long pk, long organizationPK) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addOrganization(pk, organizationPK); } /** * Adds an association between the group and the organization. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param organization the organization * @throws SystemException if a system exception occurred */ public static void addOrganization(long pk, com.liferay.portal.model.Organization organization) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addOrganization(pk, organization); } /** * Adds an association between the group and the organizations. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param organizationPKs the primary keys of the organizations * @throws SystemException if a system exception occurred */ public static void addOrganizations(long pk, long[] organizationPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addOrganizations(pk, organizationPKs); } /** * Adds an association between the group and the organizations. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param organizations the organizations * @throws SystemException if a system exception occurred */ public static void addOrganizations(long pk, java.util.List organizations) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addOrganizations(pk, organizations); } /** * Clears all associations between the group and its organizations. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group to clear the associated organizations from * @throws SystemException if a system exception occurred */ public static void clearOrganizations(long pk) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().clearOrganizations(pk); } /** * Removes the association between the group and the organization. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param organizationPK the primary key of the organization * @throws SystemException if a system exception occurred */ public static void removeOrganization(long pk, long organizationPK) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeOrganization(pk, organizationPK); } /** * Removes the association between the group and the organization. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param organization the organization * @throws SystemException if a system exception occurred */ public static void removeOrganization(long pk, com.liferay.portal.model.Organization organization) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeOrganization(pk, organization); } /** * Removes the association between the group and the organizations. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param organizationPKs the primary keys of the organizations * @throws SystemException if a system exception occurred */ public static void removeOrganizations(long pk, long[] organizationPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeOrganizations(pk, organizationPKs); } /** * Removes the association between the group and the organizations. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param organizations the organizations * @throws SystemException if a system exception occurred */ public static void removeOrganizations(long pk, java.util.List organizations) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeOrganizations(pk, organizations); } /** * Sets the organizations associated with the group, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param organizationPKs the primary keys of the organizations to be associated with the group * @throws SystemException if a system exception occurred */ public static void setOrganizations(long pk, long[] organizationPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().setOrganizations(pk, organizationPKs); } /** * Sets the organizations associated with the group, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param organizations the organizations to be associated with the group * @throws SystemException if a system exception occurred */ public static void setOrganizations(long pk, java.util.List organizations) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().setOrganizations(pk, organizations); } /** * Returns all the roles associated with the group. * * @param pk the primary key of the group * @return the roles associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getRoles( long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getRoles(pk); } /** * Returns a range of all the roles associated with the group. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param pk the primary key of the group * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of roles associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getRoles( long pk, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getRoles(pk, start, end); } /** * Returns an ordered range of all the roles associated with the group. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param pk the primary key of the group * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of roles associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getRoles( long pk, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getRoles(pk, start, end, orderByComparator); } /** * Returns the number of roles associated with the group. * * @param pk the primary key of the group * @return the number of roles associated with the group * @throws SystemException if a system exception occurred */ public static int getRolesSize(long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getRolesSize(pk); } /** * Returns true if the role is associated with the group. * * @param pk the primary key of the group * @param rolePK the primary key of the role * @return true if the role is associated with the group; false otherwise * @throws SystemException if a system exception occurred */ public static boolean containsRole(long pk, long rolePK) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().containsRole(pk, rolePK); } /** * Returns true if the group has any roles associated with it. * * @param pk the primary key of the group to check for associations with roles * @return true if the group has any roles associated with it; false otherwise * @throws SystemException if a system exception occurred */ public static boolean containsRoles(long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().containsRoles(pk); } /** * Adds an association between the group and the role. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param rolePK the primary key of the role * @throws SystemException if a system exception occurred */ public static void addRole(long pk, long rolePK) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addRole(pk, rolePK); } /** * Adds an association between the group and the role. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param role the role * @throws SystemException if a system exception occurred */ public static void addRole(long pk, com.liferay.portal.model.Role role) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addRole(pk, role); } /** * Adds an association between the group and the roles. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param rolePKs the primary keys of the roles * @throws SystemException if a system exception occurred */ public static void addRoles(long pk, long[] rolePKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addRoles(pk, rolePKs); } /** * Adds an association between the group and the roles. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param roles the roles * @throws SystemException if a system exception occurred */ public static void addRoles(long pk, java.util.List roles) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addRoles(pk, roles); } /** * Clears all associations between the group and its roles. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group to clear the associated roles from * @throws SystemException if a system exception occurred */ public static void clearRoles(long pk) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().clearRoles(pk); } /** * Removes the association between the group and the role. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param rolePK the primary key of the role * @throws SystemException if a system exception occurred */ public static void removeRole(long pk, long rolePK) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeRole(pk, rolePK); } /** * Removes the association between the group and the role. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param role the role * @throws SystemException if a system exception occurred */ public static void removeRole(long pk, com.liferay.portal.model.Role role) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeRole(pk, role); } /** * Removes the association between the group and the roles. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param rolePKs the primary keys of the roles * @throws SystemException if a system exception occurred */ public static void removeRoles(long pk, long[] rolePKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeRoles(pk, rolePKs); } /** * Removes the association between the group and the roles. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param roles the roles * @throws SystemException if a system exception occurred */ public static void removeRoles(long pk, java.util.List roles) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeRoles(pk, roles); } /** * Sets the roles associated with the group, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param rolePKs the primary keys of the roles to be associated with the group * @throws SystemException if a system exception occurred */ public static void setRoles(long pk, long[] rolePKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().setRoles(pk, rolePKs); } /** * Sets the roles associated with the group, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param roles the roles to be associated with the group * @throws SystemException if a system exception occurred */ public static void setRoles(long pk, java.util.List roles) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().setRoles(pk, roles); } /** * Returns all the user groups associated with the group. * * @param pk the primary key of the group * @return the user groups associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getUserGroups( long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getUserGroups(pk); } /** * Returns a range of all the user groups associated with the group. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param pk the primary key of the group * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of user groups associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getUserGroups( long pk, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getUserGroups(pk, start, end); } /** * Returns an ordered range of all the user groups associated with the group. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param pk the primary key of the group * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of user groups associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getUserGroups( long pk, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getUserGroups(pk, start, end, orderByComparator); } /** * Returns the number of user groups associated with the group. * * @param pk the primary key of the group * @return the number of user groups associated with the group * @throws SystemException if a system exception occurred */ public static int getUserGroupsSize(long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getUserGroupsSize(pk); } /** * Returns true if the user group is associated with the group. * * @param pk the primary key of the group * @param userGroupPK the primary key of the user group * @return true if the user group is associated with the group; false otherwise * @throws SystemException if a system exception occurred */ public static boolean containsUserGroup(long pk, long userGroupPK) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().containsUserGroup(pk, userGroupPK); } /** * Returns true if the group has any user groups associated with it. * * @param pk the primary key of the group to check for associations with user groups * @return true if the group has any user groups associated with it; false otherwise * @throws SystemException if a system exception occurred */ public static boolean containsUserGroups(long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().containsUserGroups(pk); } /** * Adds an association between the group and the user group. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userGroupPK the primary key of the user group * @throws SystemException if a system exception occurred */ public static void addUserGroup(long pk, long userGroupPK) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addUserGroup(pk, userGroupPK); } /** * Adds an association between the group and the user group. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userGroup the user group * @throws SystemException if a system exception occurred */ public static void addUserGroup(long pk, com.liferay.portal.model.UserGroup userGroup) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addUserGroup(pk, userGroup); } /** * Adds an association between the group and the user groups. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userGroupPKs the primary keys of the user groups * @throws SystemException if a system exception occurred */ public static void addUserGroups(long pk, long[] userGroupPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addUserGroups(pk, userGroupPKs); } /** * Adds an association between the group and the user groups. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userGroups the user groups * @throws SystemException if a system exception occurred */ public static void addUserGroups(long pk, java.util.List userGroups) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addUserGroups(pk, userGroups); } /** * Clears all associations between the group and its user groups. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group to clear the associated user groups from * @throws SystemException if a system exception occurred */ public static void clearUserGroups(long pk) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().clearUserGroups(pk); } /** * Removes the association between the group and the user group. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userGroupPK the primary key of the user group * @throws SystemException if a system exception occurred */ public static void removeUserGroup(long pk, long userGroupPK) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeUserGroup(pk, userGroupPK); } /** * Removes the association between the group and the user group. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userGroup the user group * @throws SystemException if a system exception occurred */ public static void removeUserGroup(long pk, com.liferay.portal.model.UserGroup userGroup) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeUserGroup(pk, userGroup); } /** * Removes the association between the group and the user groups. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userGroupPKs the primary keys of the user groups * @throws SystemException if a system exception occurred */ public static void removeUserGroups(long pk, long[] userGroupPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeUserGroups(pk, userGroupPKs); } /** * Removes the association between the group and the user groups. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userGroups the user groups * @throws SystemException if a system exception occurred */ public static void removeUserGroups(long pk, java.util.List userGroups) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeUserGroups(pk, userGroups); } /** * Sets the user groups associated with the group, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userGroupPKs the primary keys of the user groups to be associated with the group * @throws SystemException if a system exception occurred */ public static void setUserGroups(long pk, long[] userGroupPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().setUserGroups(pk, userGroupPKs); } /** * Sets the user groups associated with the group, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userGroups the user groups to be associated with the group * @throws SystemException if a system exception occurred */ public static void setUserGroups(long pk, java.util.List userGroups) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().setUserGroups(pk, userGroups); } /** * Returns all the users associated with the group. * * @param pk the primary key of the group * @return the users associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getUsers( long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getUsers(pk); } /** * Returns a range of all the users associated with the group. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param pk the primary key of the group * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @return the range of users associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getUsers( long pk, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getUsers(pk, start, end); } /** * Returns an ordered range of all the users associated with the group. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param pk the primary key of the group * @param start the lower bound of the range of groups * @param end the upper bound of the range of groups (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of users associated with the group * @throws SystemException if a system exception occurred */ public static java.util.List getUsers( long pk, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getUsers(pk, start, end, orderByComparator); } /** * Returns the number of users associated with the group. * * @param pk the primary key of the group * @return the number of users associated with the group * @throws SystemException if a system exception occurred */ public static int getUsersSize(long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getUsersSize(pk); } /** * Returns true if the user is associated with the group. * * @param pk the primary key of the group * @param userPK the primary key of the user * @return true if the user is associated with the group; false otherwise * @throws SystemException if a system exception occurred */ public static boolean containsUser(long pk, long userPK) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().containsUser(pk, userPK); } /** * Returns true if the group has any users associated with it. * * @param pk the primary key of the group to check for associations with users * @return true if the group has any users associated with it; false otherwise * @throws SystemException if a system exception occurred */ public static boolean containsUsers(long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().containsUsers(pk); } /** * Adds an association between the group and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userPK the primary key of the user * @throws SystemException if a system exception occurred */ public static void addUser(long pk, long userPK) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addUser(pk, userPK); } /** * Adds an association between the group and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param user the user * @throws SystemException if a system exception occurred */ public static void addUser(long pk, com.liferay.portal.model.User user) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addUser(pk, user); } /** * Adds an association between the group and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userPKs the primary keys of the users * @throws SystemException if a system exception occurred */ public static void addUsers(long pk, long[] userPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addUsers(pk, userPKs); } /** * Adds an association between the group and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param users the users * @throws SystemException if a system exception occurred */ public static void addUsers(long pk, java.util.List users) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addUsers(pk, users); } /** * Clears all associations between the group and its users. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group to clear the associated users from * @throws SystemException if a system exception occurred */ public static void clearUsers(long pk) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().clearUsers(pk); } /** * Removes the association between the group and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userPK the primary key of the user * @throws SystemException if a system exception occurred */ public static void removeUser(long pk, long userPK) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeUser(pk, userPK); } /** * Removes the association between the group and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param user the user * @throws SystemException if a system exception occurred */ public static void removeUser(long pk, com.liferay.portal.model.User user) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeUser(pk, user); } /** * Removes the association between the group and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userPKs the primary keys of the users * @throws SystemException if a system exception occurred */ public static void removeUsers(long pk, long[] userPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeUsers(pk, userPKs); } /** * Removes the association between the group and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param users the users * @throws SystemException if a system exception occurred */ public static void removeUsers(long pk, java.util.List users) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeUsers(pk, users); } /** * Sets the users associated with the group, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param userPKs the primary keys of the users to be associated with the group * @throws SystemException if a system exception occurred */ public static void setUsers(long pk, long[] userPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().setUsers(pk, userPKs); } /** * Sets the users associated with the group, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the group * @param users the users to be associated with the group * @throws SystemException if a system exception occurred */ public static void setUsers(long pk, java.util.List users) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().setUsers(pk, users); } public static GroupPersistence getPersistence() { if (_persistence == null) { _persistence = (GroupPersistence)PortalBeanLocatorUtil.locate(GroupPersistence.class.getName()); ReferenceRegistry.registerReference(GroupUtil.class, "_persistence"); } return _persistence; } /** * @deprecated As of 6.2.0 */ public void setPersistence(GroupPersistence persistence) { } private static GroupPersistence _persistence; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy