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

com.liferay.portal.service.persistence.OrganizationUtil 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 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.Organization;
import com.liferay.portal.service.ServiceContext;

import java.util.List;

/**
 * The persistence utility for the organization service. This utility wraps {@link OrganizationPersistenceImpl} 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 OrganizationPersistence * @see OrganizationPersistenceImpl * @generated */ public class OrganizationUtil { /* * 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(Organization organization) { getPersistence().clearCache(organization); } /** * @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 Organization update(Organization organization) throws SystemException { return getPersistence().update(organization); } /** * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, ServiceContext) */ public static Organization update(Organization organization, ServiceContext serviceContext) throws SystemException { return getPersistence().update(organization, serviceContext); } /** * Returns all the organizations where uuid = ?. * * @param uuid the uuid * @return the matching organizations * @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 organizations 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of matching organizations * @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 organizations 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching organizations * @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 organization 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 organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByUuid_First( java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByUuid_First(uuid, orderByComparator); } /** * Returns the first organization 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 organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization 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 organization 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 organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByUuid_Last( java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByUuid_Last(uuid, orderByComparator); } /** * Returns the last organization 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 organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization 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 organizations before and after the current organization in the ordered set where uuid = ?. * * @param organizationId the primary key of the current organization * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization[] findByUuid_PrevAndNext( long organizationId, java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByUuid_PrevAndNext(organizationId, uuid, orderByComparator); } /** * Returns all the organizations that the user has permission to view where uuid = ?. * * @param uuid the uuid * @return the matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByUuid( java.lang.String uuid) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterFindByUuid(uuid); } /** * Returns a range of all the organizations that the user has permission to view 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByUuid( java.lang.String uuid, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterFindByUuid(uuid, start, end); } /** * Returns an ordered range of all the organizations that the user has permissions to view 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByUuid( java.lang.String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .filterFindByUuid(uuid, start, end, orderByComparator); } /** * Returns the organizations before and after the current organization in the ordered set of organizations that the user has permission to view where uuid = ?. * * @param organizationId the primary key of the current organization * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization[] filterFindByUuid_PrevAndNext( long organizationId, java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .filterFindByUuid_PrevAndNext(organizationId, uuid, orderByComparator); } /** * Removes all the organizations 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 organizations where uuid = ?. * * @param uuid the uuid * @return the number of matching organizations * @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 number of organizations that the user has permission to view where uuid = ?. * * @param uuid the uuid * @return the number of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static int filterCountByUuid(java.lang.String uuid) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterCountByUuid(uuid); } /** * Returns all the organizations where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching organizations * @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 organizations 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of matching organizations * @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 organizations 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching organizations * @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 organization 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 organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByUuid_C_First( java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByUuid_C_First(uuid, companyId, orderByComparator); } /** * Returns the first organization 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 organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization 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 organization 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 organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByUuid_C_Last( java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByUuid_C_Last(uuid, companyId, orderByComparator); } /** * Returns the last organization 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 organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization 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 organizations before and after the current organization in the ordered set where uuid = ? and companyId = ?. * * @param organizationId the primary key of the current organization * @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 organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization[] findByUuid_C_PrevAndNext( long organizationId, java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByUuid_C_PrevAndNext(organizationId, uuid, companyId, orderByComparator); } /** * Returns all the organizations that the user has permission to view where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByUuid_C( java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterFindByUuid_C(uuid, companyId); } /** * Returns a range of all the organizations that the user has permission to view 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByUuid_C( java.lang.String uuid, long companyId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterFindByUuid_C(uuid, companyId, start, end); } /** * Returns an ordered range of all the organizations that the user has permissions to view 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByUuid_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() .filterFindByUuid_C(uuid, companyId, start, end, orderByComparator); } /** * Returns the organizations before and after the current organization in the ordered set of organizations that the user has permission to view where uuid = ? and companyId = ?. * * @param organizationId the primary key of the current organization * @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 organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization[] filterFindByUuid_C_PrevAndNext( long organizationId, java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .filterFindByUuid_C_PrevAndNext(organizationId, uuid, companyId, orderByComparator); } /** * Removes all the organizations 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 organizations where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching organizations * @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 the number of organizations that the user has permission to view where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static int filterCountByUuid_C(java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterCountByUuid_C(uuid, companyId); } /** * Returns all the organizations where companyId = ?. * * @param companyId the company ID * @return the matching organizations * @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 organizations 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of matching organizations * @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 organizations 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching organizations * @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 organization 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 organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByCompanyId_First( long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByCompanyId_First(companyId, orderByComparator); } /** * Returns the first organization 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 organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization 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 organization 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 organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByCompanyId_Last( long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByCompanyId_Last(companyId, orderByComparator); } /** * Returns the last organization 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 organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization 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 organizations before and after the current organization in the ordered set where companyId = ?. * * @param organizationId the primary key of the current organization * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization[] findByCompanyId_PrevAndNext( long organizationId, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByCompanyId_PrevAndNext(organizationId, companyId, orderByComparator); } /** * Returns all the organizations that the user has permission to view where companyId = ?. * * @param companyId the company ID * @return the matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByCompanyId( long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterFindByCompanyId(companyId); } /** * Returns a range of all the organizations that the user has permission to view 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByCompanyId( long companyId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterFindByCompanyId(companyId, start, end); } /** * Returns an ordered range of all the organizations that the user has permissions to view 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByCompanyId( long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .filterFindByCompanyId(companyId, start, end, orderByComparator); } /** * Returns the organizations before and after the current organization in the ordered set of organizations that the user has permission to view where companyId = ?. * * @param organizationId the primary key of the current organization * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization[] filterFindByCompanyId_PrevAndNext( long organizationId, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .filterFindByCompanyId_PrevAndNext(organizationId, companyId, orderByComparator); } /** * Removes all the organizations 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 organizations where companyId = ?. * * @param companyId the company ID * @return the number of matching organizations * @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 number of organizations that the user has permission to view where companyId = ?. * * @param companyId the company ID * @return the number of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static int filterCountByCompanyId(long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterCountByCompanyId(companyId); } /** * Returns all the organizations where companyId = ?. * * @param companyId the company ID * @return the matching organizations * @throws SystemException if a system exception occurred */ public static java.util.List findByLocations( long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByLocations(companyId); } /** * Returns a range of all the organizations 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of matching organizations * @throws SystemException if a system exception occurred */ public static java.util.List findByLocations( long companyId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByLocations(companyId, start, end); } /** * Returns an ordered range of all the organizations 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching organizations * @throws SystemException if a system exception occurred */ public static java.util.List findByLocations( long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByLocations(companyId, start, end, orderByComparator); } /** * Returns the first organization 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 organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByLocations_First( long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByLocations_First(companyId, orderByComparator); } /** * Returns the first organization 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 organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization fetchByLocations_First( long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByLocations_First(companyId, orderByComparator); } /** * Returns the last organization 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 organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByLocations_Last( long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByLocations_Last(companyId, orderByComparator); } /** * Returns the last organization 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 organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization fetchByLocations_Last( long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByLocations_Last(companyId, orderByComparator); } /** * Returns the organizations before and after the current organization in the ordered set where companyId = ?. * * @param organizationId the primary key of the current organization * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization[] findByLocations_PrevAndNext( long organizationId, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByLocations_PrevAndNext(organizationId, companyId, orderByComparator); } /** * Returns all the organizations that the user has permission to view where companyId = ?. * * @param companyId the company ID * @return the matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByLocations( long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterFindByLocations(companyId); } /** * Returns a range of all the organizations that the user has permission to view 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByLocations( long companyId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterFindByLocations(companyId, start, end); } /** * Returns an ordered range of all the organizations that the user has permissions to view 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByLocations( long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .filterFindByLocations(companyId, start, end, orderByComparator); } /** * Returns the organizations before and after the current organization in the ordered set of organizations that the user has permission to view where companyId = ?. * * @param organizationId the primary key of the current organization * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization[] filterFindByLocations_PrevAndNext( long organizationId, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .filterFindByLocations_PrevAndNext(organizationId, companyId, orderByComparator); } /** * Removes all the organizations where companyId = ? from the database. * * @param companyId the company ID * @throws SystemException if a system exception occurred */ public static void removeByLocations(long companyId) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByLocations(companyId); } /** * Returns the number of organizations where companyId = ?. * * @param companyId the company ID * @return the number of matching organizations * @throws SystemException if a system exception occurred */ public static int countByLocations(long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByLocations(companyId); } /** * Returns the number of organizations that the user has permission to view where companyId = ?. * * @param companyId the company ID * @return the number of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static int filterCountByLocations(long companyId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterCountByLocations(companyId); } /** * Returns all the organizations where companyId = ? and parentOrganizationId = ?. * * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @return the matching organizations * @throws SystemException if a system exception occurred */ public static java.util.List findByC_P( long companyId, long parentOrganizationId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_P(companyId, parentOrganizationId); } /** * Returns a range of all the organizations where companyId = ? and parentOrganizationId = ?. * *

* 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.OrganizationModelImpl}. 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 parentOrganizationId the parent organization ID * @param start the lower bound of the range of organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of matching organizations * @throws SystemException if a system exception occurred */ public static java.util.List findByC_P( long companyId, long parentOrganizationId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P(companyId, parentOrganizationId, start, end); } /** * Returns an ordered range of all the organizations where companyId = ? and parentOrganizationId = ?. * *

* 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.OrganizationModelImpl}. 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 parentOrganizationId the parent organization ID * @param start the lower bound of the range of organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching organizations * @throws SystemException if a system exception occurred */ public static java.util.List findByC_P( long companyId, long parentOrganizationId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P(companyId, parentOrganizationId, start, end, orderByComparator); } /** * Returns the first organization in the ordered set where companyId = ? and parentOrganizationId = ?. * * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByC_P_First( long companyId, long parentOrganizationId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_First(companyId, parentOrganizationId, orderByComparator); } /** * Returns the first organization in the ordered set where companyId = ? and parentOrganizationId = ?. * * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization fetchByC_P_First( long companyId, long parentOrganizationId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_P_First(companyId, parentOrganizationId, orderByComparator); } /** * Returns the last organization in the ordered set where companyId = ? and parentOrganizationId = ?. * * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByC_P_Last( long companyId, long parentOrganizationId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_Last(companyId, parentOrganizationId, orderByComparator); } /** * Returns the last organization in the ordered set where companyId = ? and parentOrganizationId = ?. * * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization fetchByC_P_Last( long companyId, long parentOrganizationId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .fetchByC_P_Last(companyId, parentOrganizationId, orderByComparator); } /** * Returns the organizations before and after the current organization in the ordered set where companyId = ? and parentOrganizationId = ?. * * @param organizationId the primary key of the current organization * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization[] findByC_P_PrevAndNext( long organizationId, long companyId, long parentOrganizationId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .findByC_P_PrevAndNext(organizationId, companyId, parentOrganizationId, orderByComparator); } /** * Returns all the organizations that the user has permission to view where companyId = ? and parentOrganizationId = ?. * * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @return the matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByC_P( long companyId, long parentOrganizationId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterFindByC_P(companyId, parentOrganizationId); } /** * Returns a range of all the organizations that the user has permission to view where companyId = ? and parentOrganizationId = ?. * *

* 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.OrganizationModelImpl}. 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 parentOrganizationId the parent organization ID * @param start the lower bound of the range of organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByC_P( long companyId, long parentOrganizationId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .filterFindByC_P(companyId, parentOrganizationId, start, end); } /** * Returns an ordered range of all the organizations that the user has permissions to view where companyId = ? and parentOrganizationId = ?. * *

* 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.OrganizationModelImpl}. 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 parentOrganizationId the parent organization ID * @param start the lower bound of the range of organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static java.util.List filterFindByC_P( long companyId, long parentOrganizationId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence() .filterFindByC_P(companyId, parentOrganizationId, start, end, orderByComparator); } /** * Returns the organizations before and after the current organization in the ordered set of organizations that the user has permission to view where companyId = ? and parentOrganizationId = ?. * * @param organizationId the primary key of the current organization * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization[] filterFindByC_P_PrevAndNext( long organizationId, long companyId, long parentOrganizationId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence() .filterFindByC_P_PrevAndNext(organizationId, companyId, parentOrganizationId, orderByComparator); } /** * Removes all the organizations where companyId = ? and parentOrganizationId = ? from the database. * * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @throws SystemException if a system exception occurred */ public static void removeByC_P(long companyId, long parentOrganizationId) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeByC_P(companyId, parentOrganizationId); } /** * Returns the number of organizations where companyId = ? and parentOrganizationId = ?. * * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @return the number of matching organizations * @throws SystemException if a system exception occurred */ public static int countByC_P(long companyId, long parentOrganizationId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countByC_P(companyId, parentOrganizationId); } /** * Returns the number of organizations that the user has permission to view where companyId = ? and parentOrganizationId = ?. * * @param companyId the company ID * @param parentOrganizationId the parent organization ID * @return the number of matching organizations that the user has permission to view * @throws SystemException if a system exception occurred */ public static int filterCountByC_P(long companyId, long parentOrganizationId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().filterCountByC_P(companyId, parentOrganizationId); } /** * Returns the organization where companyId = ? and name = ? or throws a {@link com.liferay.portal.NoSuchOrganizationException} if it could not be found. * * @param companyId the company ID * @param name the name * @return the matching organization * @throws com.liferay.portal.NoSuchOrganizationException if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByC_N( long companyId, java.lang.String name) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByC_N(companyId, name); } /** * Returns the organization 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 organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization fetchByC_N( long companyId, java.lang.String name) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByC_N(companyId, name); } /** * Returns the organization 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 organization, or null if a matching organization could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization 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 organization where companyId = ? and name = ? from the database. * * @param companyId the company ID * @param name the name * @return the organization that was removed * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization removeByC_N( long companyId, java.lang.String name) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().removeByC_N(companyId, name); } /** * Returns the number of organizations where companyId = ? and name = ?. * * @param companyId the company ID * @param name the name * @return the number of matching organizations * @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); } /** * Caches the organization in the entity cache if it is enabled. * * @param organization the organization */ public static void cacheResult( com.liferay.portal.model.Organization organization) { getPersistence().cacheResult(organization); } /** * Caches the organizations in the entity cache if it is enabled. * * @param organizations the organizations */ public static void cacheResult( java.util.List organizations) { getPersistence().cacheResult(organizations); } /** * Creates a new organization with the primary key. Does not add the organization to the database. * * @param organizationId the primary key for the new organization * @return the new organization */ public static com.liferay.portal.model.Organization create( long organizationId) { return getPersistence().create(organizationId); } /** * Removes the organization with the primary key from the database. Also notifies the appropriate model listeners. * * @param organizationId the primary key of the organization * @return the organization that was removed * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization remove( long organizationId) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().remove(organizationId); } public static com.liferay.portal.model.Organization updateImpl( com.liferay.portal.model.Organization organization) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().updateImpl(organization); } /** * Returns the organization with the primary key or throws a {@link com.liferay.portal.NoSuchOrganizationException} if it could not be found. * * @param organizationId the primary key of the organization * @return the organization * @throws com.liferay.portal.NoSuchOrganizationException if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization findByPrimaryKey( long organizationId) throws com.liferay.portal.NoSuchOrganizationException, com.liferay.portal.kernel.exception.SystemException { return getPersistence().findByPrimaryKey(organizationId); } /** * Returns the organization with the primary key or returns null if it could not be found. * * @param organizationId the primary key of the organization * @return the organization, or null if a organization with the primary key could not be found * @throws SystemException if a system exception occurred */ public static com.liferay.portal.model.Organization fetchByPrimaryKey( long organizationId) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().fetchByPrimaryKey(organizationId); } /** * Returns all the organizations. * * @return the organizations * @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 organizations. * *

* 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of organizations * @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 organizations. * *

* 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.OrganizationModelImpl}. 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 organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of organizations * @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 organizations 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 organizations. * * @return the number of organizations * @throws SystemException if a system exception occurred */ public static int countAll() throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().countAll(); } /** * Returns all the groups associated with the organization. * * @param pk the primary key of the organization * @return the groups associated with the organization * @throws SystemException if a system exception occurred */ public static java.util.List getGroups( long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getGroups(pk); } /** * Returns a range of all the groups associated with the organization. * *

* 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.OrganizationModelImpl}. 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 organization * @param start the lower bound of the range of organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of groups associated with the organization * @throws SystemException if a system exception occurred */ public static java.util.List getGroups( long pk, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getGroups(pk, start, end); } /** * Returns an ordered range of all the groups associated with the organization. * *

* 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.OrganizationModelImpl}. 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 organization * @param start the lower bound of the range of organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of groups associated with the organization * @throws SystemException if a system exception occurred */ public static java.util.List getGroups( long pk, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getGroups(pk, start, end, orderByComparator); } /** * Returns the number of groups associated with the organization. * * @param pk the primary key of the organization * @return the number of groups associated with the organization * @throws SystemException if a system exception occurred */ public static int getGroupsSize(long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().getGroupsSize(pk); } /** * Returns true if the group is associated with the organization. * * @param pk the primary key of the organization * @param groupPK the primary key of the group * @return true if the group is associated with the organization; false otherwise * @throws SystemException if a system exception occurred */ public static boolean containsGroup(long pk, long groupPK) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().containsGroup(pk, groupPK); } /** * Returns true if the organization has any groups associated with it. * * @param pk the primary key of the organization to check for associations with groups * @return true if the organization has any groups associated with it; false otherwise * @throws SystemException if a system exception occurred */ public static boolean containsGroups(long pk) throws com.liferay.portal.kernel.exception.SystemException { return getPersistence().containsGroups(pk); } /** * Adds an association between the organization and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @param groupPK the primary key of the group * @throws SystemException if a system exception occurred */ public static void addGroup(long pk, long groupPK) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addGroup(pk, groupPK); } /** * Adds an association between the organization and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @param group the group * @throws SystemException if a system exception occurred */ public static void addGroup(long pk, com.liferay.portal.model.Group group) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addGroup(pk, group); } /** * Adds an association between the organization and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @param groupPKs the primary keys of the groups * @throws SystemException if a system exception occurred */ public static void addGroups(long pk, long[] groupPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addGroups(pk, groupPKs); } /** * Adds an association between the organization and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @param groups the groups * @throws SystemException if a system exception occurred */ public static void addGroups(long pk, java.util.List groups) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().addGroups(pk, groups); } /** * Clears all associations between the organization and its groups. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization to clear the associated groups from * @throws SystemException if a system exception occurred */ public static void clearGroups(long pk) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().clearGroups(pk); } /** * Removes the association between the organization and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @param groupPK the primary key of the group * @throws SystemException if a system exception occurred */ public static void removeGroup(long pk, long groupPK) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeGroup(pk, groupPK); } /** * Removes the association between the organization and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @param group the group * @throws SystemException if a system exception occurred */ public static void removeGroup(long pk, com.liferay.portal.model.Group group) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeGroup(pk, group); } /** * Removes the association between the organization and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @param groupPKs the primary keys of the groups * @throws SystemException if a system exception occurred */ public static void removeGroups(long pk, long[] groupPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeGroups(pk, groupPKs); } /** * Removes the association between the organization and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @param groups the groups * @throws SystemException if a system exception occurred */ public static void removeGroups(long pk, java.util.List groups) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().removeGroups(pk, groups); } /** * Sets the groups associated with the organization, 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 organization * @param groupPKs the primary keys of the groups to be associated with the organization * @throws SystemException if a system exception occurred */ public static void setGroups(long pk, long[] groupPKs) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().setGroups(pk, groupPKs); } /** * Sets the groups associated with the organization, 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 organization * @param groups the groups to be associated with the organization * @throws SystemException if a system exception occurred */ public static void setGroups(long pk, java.util.List groups) throws com.liferay.portal.kernel.exception.SystemException { getPersistence().setGroups(pk, groups); } /** * Returns all the users associated with the organization. * * @param pk the primary key of the organization * @return the users associated with the organization * @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 organization. * *

* 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.OrganizationModelImpl}. 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 organization * @param start the lower bound of the range of organizations * @param end the upper bound of the range of organizations (not inclusive) * @return the range of users associated with the organization * @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 organization. * *

* 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.OrganizationModelImpl}. 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 organization * @param start the lower bound of the range of organizations * @param end the upper bound of the range of organizations (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of users associated with the organization * @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 organization. * * @param pk the primary key of the organization * @return the number of users associated with the organization * @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 organization. * * @param pk the primary key of the organization * @param userPK the primary key of the user * @return true if the user is associated with the organization; 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 organization has any users associated with it. * * @param pk the primary key of the organization to check for associations with users * @return true if the organization 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 organization and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @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 organization and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @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 organization and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @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 organization and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @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 organization and its users. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization 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 organization and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @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 organization and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @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 organization and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @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 organization and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the organization * @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 organization, 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 organization * @param userPKs the primary keys of the users to be associated with the organization * @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 organization, 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 organization * @param users the users to be associated with the organization * @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 OrganizationPersistence getPersistence() { if (_persistence == null) { _persistence = (OrganizationPersistence)PortalBeanLocatorUtil.locate(OrganizationPersistence.class.getName()); ReferenceRegistry.registerReference(OrganizationUtil.class, "_persistence"); } return _persistence; } /** * @deprecated As of 6.2.0 */ public void setPersistence(OrganizationPersistence persistence) { } private static OrganizationPersistence _persistence; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy