Liferay 7.0-ce-b4

com.liferay.portal.service.persistence
Class OrganizationUtil

java.lang.Object
  extended by com.liferay.portal.service.persistence.OrganizationUtil

@ProviderType
public class OrganizationUtil
extends Object

The persistence utility for the organization service. This utility wraps 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

See Also:
OrganizationPersistence, OrganizationPersistenceImpl

Constructor Summary
OrganizationUtil()
           
 
Method Summary
static void addGroup(long pk, Group group)
          Adds an association between the organization and the group.
static void addGroup(long pk, long groupPK)
          Adds an association between the organization and the group.
static void addGroups(long pk, List<Group> groups)
          Adds an association between the organization and the groups.
static void addGroups(long pk, long[] groupPKs)
          Adds an association between the organization and the groups.
static void addUser(long pk, long userPK)
          Adds an association between the organization and the user.
static void addUser(long pk, User user)
          Adds an association between the organization and the user.
static void addUsers(long pk, List<User> users)
          Adds an association between the organization and the users.
static void addUsers(long pk, long[] userPKs)
          Adds an association between the organization and the users.
static void cacheResult(List<Organization> organizations)
          Caches the organizations in the entity cache if it is enabled.
static void cacheResult(Organization organization)
          Caches the organization in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(Organization organization)
           
static void clearGroups(long pk)
          Clears all associations between the organization and its groups.
static void clearUsers(long pk)
          Clears all associations between the organization and its users.
static boolean containsGroup(long pk, long groupPK)
          Returns true if the group is associated with the organization.
static boolean containsGroups(long pk)
          Returns true if the organization has any groups associated with it.
static boolean containsUser(long pk, long userPK)
          Returns true if the user is associated with the organization.
static boolean containsUsers(long pk)
          Returns true if the organization has any users associated with it.
static int countAll()
          Returns the number of organizations.
static int countByC_N(long companyId, String name)
          Returns the number of organizations where companyId = ? and name = ?.
static int countByC_P(long companyId, long parentOrganizationId)
          Returns the number of organizations where companyId = ? and parentOrganizationId = ?.
static int countByC_T(long companyId, String treePath)
          Returns the number of organizations where companyId = ? and treePath LIKE ?.
static int countByCompanyId(long companyId)
          Returns the number of organizations where companyId = ?.
static int countByLocations(long companyId)
          Returns the number of organizations where companyId = ?.
static int countByO_C_P(long organizationId, long companyId, long parentOrganizationId)
          Returns the number of organizations where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static int countByUuid_C(String uuid, long companyId)
          Returns the number of organizations where uuid = ? and companyId = ?.
static int countByUuid(String uuid)
          Returns the number of organizations where uuid = ?.
static long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static Organization create(long organizationId)
          Creates a new organization with the primary key.
static Organization fetchByC_N(long companyId, String name)
          Returns the organization where companyId = ? and name = ? or returns null if it could not be found.
static Organization fetchByC_N(long companyId, String name, boolean retrieveFromCache)
          Returns the organization where companyId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
static Organization fetchByC_P_First(long companyId, long parentOrganizationId, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where companyId = ? and parentOrganizationId = ?.
static Organization fetchByC_P_Last(long companyId, long parentOrganizationId, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where companyId = ? and parentOrganizationId = ?.
static Organization fetchByC_T_First(long companyId, String treePath, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where companyId = ? and treePath LIKE ?.
static Organization fetchByC_T_Last(long companyId, String treePath, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where companyId = ? and treePath LIKE ?.
static Organization fetchByCompanyId_First(long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where companyId = ?.
static Organization fetchByCompanyId_Last(long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where companyId = ?.
static Organization fetchByLocations_First(long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where companyId = ?.
static Organization fetchByLocations_Last(long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where companyId = ?.
static Organization fetchByO_C_P_First(long organizationId, long companyId, long parentOrganizationId, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static Organization fetchByO_C_P_Last(long organizationId, long companyId, long parentOrganizationId, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static Organization fetchByPrimaryKey(long organizationId)
          Returns the organization with the primary key or returns null if it could not be found.
static Map<Serializable,Organization> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
           
static Organization fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where uuid = ? and companyId = ?.
static Organization fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where uuid = ? and companyId = ?.
static Organization fetchByUuid_First(String uuid, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where uuid = ?.
static Organization fetchByUuid_Last(String uuid, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where uuid = ?.
static int filterCountByC_P(long companyId, long parentOrganizationId)
          Returns the number of organizations that the user has permission to view where companyId = ? and parentOrganizationId = ?.
static int filterCountByC_T(long companyId, String treePath)
          Returns the number of organizations that the user has permission to view where companyId = ? and treePath LIKE ?.
static int filterCountByCompanyId(long companyId)
          Returns the number of organizations that the user has permission to view where companyId = ?.
static int filterCountByLocations(long companyId)
          Returns the number of organizations that the user has permission to view where companyId = ?.
static int filterCountByO_C_P(long organizationId, long companyId, long parentOrganizationId)
          Returns the number of organizations that the user has permission to view where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static int filterCountByUuid_C(String uuid, long companyId)
          Returns the number of organizations that the user has permission to view where uuid = ? and companyId = ?.
static int filterCountByUuid(String uuid)
          Returns the number of organizations that the user has permission to view where uuid = ?.
static Organization[] filterFindByC_P_PrevAndNext(long organizationId, long companyId, long parentOrganizationId, OrderByComparator<Organization> 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 = ?.
static List<Organization> filterFindByC_P(long companyId, long parentOrganizationId)
          Returns all the organizations that the user has permission to view where companyId = ? and parentOrganizationId = ?.
static List<Organization> filterFindByC_P(long companyId, long parentOrganizationId, int start, int end)
          Returns a range of all the organizations that the user has permission to view where companyId = ? and parentOrganizationId = ?.
static List<Organization> filterFindByC_P(long companyId, long parentOrganizationId, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations that the user has permissions to view where companyId = ? and parentOrganizationId = ?.
static Organization[] filterFindByC_T_PrevAndNext(long organizationId, long companyId, String treePath, OrderByComparator<Organization> 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 treePath LIKE ?.
static List<Organization> filterFindByC_T(long companyId, String treePath)
          Returns all the organizations that the user has permission to view where companyId = ? and treePath LIKE ?.
static List<Organization> filterFindByC_T(long companyId, String treePath, int start, int end)
          Returns a range of all the organizations that the user has permission to view where companyId = ? and treePath LIKE ?.
static List<Organization> filterFindByC_T(long companyId, String treePath, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations that the user has permissions to view where companyId = ? and treePath LIKE ?.
static Organization[] filterFindByCompanyId_PrevAndNext(long organizationId, long companyId, OrderByComparator<Organization> 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 = ?.
static List<Organization> filterFindByCompanyId(long companyId)
          Returns all the organizations that the user has permission to view where companyId = ?.
static List<Organization> filterFindByCompanyId(long companyId, int start, int end)
          Returns a range of all the organizations that the user has permission to view where companyId = ?.
static List<Organization> filterFindByCompanyId(long companyId, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations that the user has permissions to view where companyId = ?.
static Organization[] filterFindByLocations_PrevAndNext(long organizationId, long companyId, OrderByComparator<Organization> 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 = ?.
static List<Organization> filterFindByLocations(long companyId)
          Returns all the organizations that the user has permission to view where companyId = ?.
static List<Organization> filterFindByLocations(long companyId, int start, int end)
          Returns a range of all the organizations that the user has permission to view where companyId = ?.
static List<Organization> filterFindByLocations(long companyId, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations that the user has permissions to view where companyId = ?.
static List<Organization> filterFindByO_C_P(long organizationId, long companyId, long parentOrganizationId)
          Returns all the organizations that the user has permission to view where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static List<Organization> filterFindByO_C_P(long organizationId, long companyId, long parentOrganizationId, int start, int end)
          Returns a range of all the organizations that the user has permission to view where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static List<Organization> filterFindByO_C_P(long organizationId, long companyId, long parentOrganizationId, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations that the user has permissions to view where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static Organization[] filterFindByUuid_C_PrevAndNext(long organizationId, String uuid, long companyId, OrderByComparator<Organization> 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 = ?.
static List<Organization> filterFindByUuid_C(String uuid, long companyId)
          Returns all the organizations that the user has permission to view where uuid = ? and companyId = ?.
static List<Organization> filterFindByUuid_C(String uuid, long companyId, int start, int end)
          Returns a range of all the organizations that the user has permission to view where uuid = ? and companyId = ?.
static List<Organization> filterFindByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations that the user has permissions to view where uuid = ? and companyId = ?.
static Organization[] filterFindByUuid_PrevAndNext(long organizationId, String uuid, OrderByComparator<Organization> 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 = ?.
static List<Organization> filterFindByUuid(String uuid)
          Returns all the organizations that the user has permission to view where uuid = ?.
static List<Organization> filterFindByUuid(String uuid, int start, int end)
          Returns a range of all the organizations that the user has permission to view where uuid = ?.
static List<Organization> filterFindByUuid(String uuid, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations that the user has permissions to view where uuid = ?.
static List<Organization> findAll()
          Returns all the organizations.
static List<Organization> findAll(int start, int end)
          Returns a range of all the organizations.
static List<Organization> findAll(int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations.
static List<Organization> findAll(int start, int end, OrderByComparator<Organization> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the organizations.
static Organization findByC_N(long companyId, String name)
          Returns the organization where companyId = ? and name = ? or throws a NoSuchOrganizationException if it could not be found.
static Organization findByC_P_First(long companyId, long parentOrganizationId, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where companyId = ? and parentOrganizationId = ?.
static Organization findByC_P_Last(long companyId, long parentOrganizationId, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where companyId = ? and parentOrganizationId = ?.
static Organization[] findByC_P_PrevAndNext(long organizationId, long companyId, long parentOrganizationId, OrderByComparator<Organization> orderByComparator)
          Returns the organizations before and after the current organization in the ordered set where companyId = ? and parentOrganizationId = ?.
static List<Organization> findByC_P(long companyId, long parentOrganizationId)
          Returns all the organizations where companyId = ? and parentOrganizationId = ?.
static List<Organization> findByC_P(long companyId, long parentOrganizationId, int start, int end)
          Returns a range of all the organizations where companyId = ? and parentOrganizationId = ?.
static List<Organization> findByC_P(long companyId, long parentOrganizationId, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations where companyId = ? and parentOrganizationId = ?.
static List<Organization> findByC_P(long companyId, long parentOrganizationId, int start, int end, OrderByComparator<Organization> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the organizations where companyId = ? and parentOrganizationId = ?.
static Organization findByC_T_First(long companyId, String treePath, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where companyId = ? and treePath LIKE ?.
static Organization findByC_T_Last(long companyId, String treePath, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where companyId = ? and treePath LIKE ?.
static Organization[] findByC_T_PrevAndNext(long organizationId, long companyId, String treePath, OrderByComparator<Organization> orderByComparator)
          Returns the organizations before and after the current organization in the ordered set where companyId = ? and treePath LIKE ?.
static List<Organization> findByC_T(long companyId, String treePath)
          Returns all the organizations where companyId = ? and treePath LIKE ?.
static List<Organization> findByC_T(long companyId, String treePath, int start, int end)
          Returns a range of all the organizations where companyId = ? and treePath LIKE ?.
static List<Organization> findByC_T(long companyId, String treePath, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations where companyId = ? and treePath LIKE ?.
static List<Organization> findByC_T(long companyId, String treePath, int start, int end, OrderByComparator<Organization> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the organizations where companyId = ? and treePath LIKE ?.
static Organization findByCompanyId_First(long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where companyId = ?.
static Organization findByCompanyId_Last(long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where companyId = ?.
static Organization[] findByCompanyId_PrevAndNext(long organizationId, long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the organizations before and after the current organization in the ordered set where companyId = ?.
static List<Organization> findByCompanyId(long companyId)
          Returns all the organizations where companyId = ?.
static List<Organization> findByCompanyId(long companyId, int start, int end)
          Returns a range of all the organizations where companyId = ?.
static List<Organization> findByCompanyId(long companyId, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations where companyId = ?.
static List<Organization> findByCompanyId(long companyId, int start, int end, OrderByComparator<Organization> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the organizations where companyId = ?.
static Organization findByLocations_First(long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where companyId = ?.
static Organization findByLocations_Last(long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where companyId = ?.
static Organization[] findByLocations_PrevAndNext(long organizationId, long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the organizations before and after the current organization in the ordered set where companyId = ?.
static List<Organization> findByLocations(long companyId)
          Returns all the organizations where companyId = ?.
static List<Organization> findByLocations(long companyId, int start, int end)
          Returns a range of all the organizations where companyId = ?.
static List<Organization> findByLocations(long companyId, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations where companyId = ?.
static List<Organization> findByLocations(long companyId, int start, int end, OrderByComparator<Organization> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the organizations where companyId = ?.
static Organization findByO_C_P_First(long organizationId, long companyId, long parentOrganizationId, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static Organization findByO_C_P_Last(long organizationId, long companyId, long parentOrganizationId, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static List<Organization> findByO_C_P(long organizationId, long companyId, long parentOrganizationId)
          Returns all the organizations where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static List<Organization> findByO_C_P(long organizationId, long companyId, long parentOrganizationId, int start, int end)
          Returns a range of all the organizations where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static List<Organization> findByO_C_P(long organizationId, long companyId, long parentOrganizationId, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static List<Organization> findByO_C_P(long organizationId, long companyId, long parentOrganizationId, int start, int end, OrderByComparator<Organization> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the organizations where organizationId > ? and companyId = ? and parentOrganizationId = ?.
static Organization findByPrimaryKey(long organizationId)
          Returns the organization with the primary key or throws a NoSuchOrganizationException if it could not be found.
static Organization findByUuid_C_First(String uuid, long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where uuid = ? and companyId = ?.
static Organization findByUuid_C_Last(String uuid, long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where uuid = ? and companyId = ?.
static Organization[] findByUuid_C_PrevAndNext(long organizationId, String uuid, long companyId, OrderByComparator<Organization> orderByComparator)
          Returns the organizations before and after the current organization in the ordered set where uuid = ? and companyId = ?.
static List<Organization> findByUuid_C(String uuid, long companyId)
          Returns all the organizations where uuid = ? and companyId = ?.
static List<Organization> findByUuid_C(String uuid, long companyId, int start, int end)
          Returns a range of all the organizations where uuid = ? and companyId = ?.
static List<Organization> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations where uuid = ? and companyId = ?.
static List<Organization> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Organization> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the organizations where uuid = ? and companyId = ?.
static Organization findByUuid_First(String uuid, OrderByComparator<Organization> orderByComparator)
          Returns the first organization in the ordered set where uuid = ?.
static Organization findByUuid_Last(String uuid, OrderByComparator<Organization> orderByComparator)
          Returns the last organization in the ordered set where uuid = ?.
static Organization[] findByUuid_PrevAndNext(long organizationId, String uuid, OrderByComparator<Organization> orderByComparator)
          Returns the organizations before and after the current organization in the ordered set where uuid = ?.
static List<Organization> findByUuid(String uuid)
          Returns all the organizations where uuid = ?.
static List<Organization> findByUuid(String uuid, int start, int end)
          Returns a range of all the organizations where uuid = ?.
static List<Organization> findByUuid(String uuid, int start, int end, OrderByComparator<Organization> orderByComparator)
          Returns an ordered range of all the organizations where uuid = ?.
static List<Organization> findByUuid(String uuid, int start, int end, OrderByComparator<Organization> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the organizations where uuid = ?.
static List<Organization> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<Organization> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<Organization> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<Organization> orderByComparator)
           
static Set<String> getBadColumnNames()
           
static long[] getGroupPrimaryKeys(long pk)
          Returns the primaryKeys of groups associated with the organization.
static List<Group> getGroups(long pk)
          Returns all the groups associated with the organization.
static List<Group> getGroups(long pk, int start, int end)
          Returns a range of all the groups associated with the organization.
static List<Group> getGroups(long pk, int start, int end, OrderByComparator<Group> orderByComparator)
          Returns an ordered range of all the groups associated with the organization.
static int getGroupsSize(long pk)
          Returns the number of groups associated with the organization.
static OrganizationPersistence getPersistence()
           
static long[] getUserPrimaryKeys(long pk)
          Returns the primaryKeys of users associated with the organization.
static List<User> getUsers(long pk)
          Returns all the users associated with the organization.
static List<User> getUsers(long pk, int start, int end)
          Returns a range of all the users associated with the organization.
static List<User> getUsers(long pk, int start, int end, OrderByComparator<User> orderByComparator)
          Returns an ordered range of all the users associated with the organization.
static int getUsersSize(long pk)
          Returns the number of users associated with the organization.
static Organization remove(long organizationId)
          Removes the organization with the primary key from the database.
static void removeAll()
          Removes all the organizations from the database.
static Organization removeByC_N(long companyId, String name)
          Removes the organization where companyId = ? and name = ? from the database.
static void removeByC_P(long companyId, long parentOrganizationId)
          Removes all the organizations where companyId = ? and parentOrganizationId = ? from the database.
static void removeByC_T(long companyId, String treePath)
          Removes all the organizations where companyId = ? and treePath LIKE ? from the database.
static void removeByCompanyId(long companyId)
          Removes all the organizations where companyId = ? from the database.
static void removeByLocations(long companyId)
          Removes all the organizations where companyId = ? from the database.
static void removeByO_C_P(long organizationId, long companyId, long parentOrganizationId)
          Removes all the organizations where organizationId > ? and companyId = ? and parentOrganizationId = ? from the database.
static void removeByUuid_C(String uuid, long companyId)
          Removes all the organizations where uuid = ? and companyId = ? from the database.
static void removeByUuid(String uuid)
          Removes all the organizations where uuid = ? from the database.
static void removeGroup(long pk, Group group)
          Removes the association between the organization and the group.
static void removeGroup(long pk, long groupPK)
          Removes the association between the organization and the group.
static void removeGroups(long pk, List<Group> groups)
          Removes the association between the organization and the groups.
static void removeGroups(long pk, long[] groupPKs)
          Removes the association between the organization and the groups.
static void removeUser(long pk, long userPK)
          Removes the association between the organization and the user.
static void removeUser(long pk, User user)
          Removes the association between the organization and the user.
static void removeUsers(long pk, List<User> users)
          Removes the association between the organization and the users.
static void removeUsers(long pk, long[] userPKs)
          Removes the association between the organization and the users.
static void setGroups(long pk, List<Group> groups)
          Sets the groups associated with the organization, removing and adding associations as necessary.
static void setGroups(long pk, long[] groupPKs)
          Sets the groups associated with the organization, removing and adding associations as necessary.
static void setUsers(long pk, List<User> users)
          Sets the users associated with the organization, removing and adding associations as necessary.
static void setUsers(long pk, long[] userPKs)
          Sets the users associated with the organization, removing and adding associations as necessary.
static Organization update(Organization organization)
           
static Organization update(Organization organization, ServiceContext serviceContext)
           
static Organization updateImpl(Organization organization)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OrganizationUtil

public OrganizationUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(Organization organization)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<Organization> findWithDynamicQuery(DynamicQuery dynamicQuery)
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<Organization> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                      int start,
                                                      int end)
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<Organization> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                      int start,
                                                      int end,
                                                      OrderByComparator<Organization> orderByComparator)
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

update

public static Organization update(Organization organization)
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel)

update

public static Organization update(Organization organization,
                                  ServiceContext serviceContext)
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, ServiceContext)

findByUuid

public static List<Organization> findByUuid(String uuid)
Returns all the organizations where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the matching organizations

findByUuid

public static List<Organization> findByUuid(String uuid,
                                            int start,
                                            int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
uuid - the uuid
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations

findByUuid

public static List<Organization> findByUuid(String uuid,
                                            int start,
                                            int end,
                                            OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
uuid - the uuid
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations

findByUuid

public static List<Organization> findByUuid(String uuid,
                                            int start,
                                            int end,
                                            OrderByComparator<Organization> orderByComparator,
                                            boolean retrieveFromCache)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
uuid - the uuid
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching organizations

findByUuid_First

public static Organization findByUuid_First(String uuid,
                                            OrderByComparator<Organization> orderByComparator)
                                     throws NoSuchOrganizationException
Returns the first organization in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByUuid_First

public static Organization fetchByUuid_First(String uuid,
                                             OrderByComparator<Organization> orderByComparator)
Returns the first organization in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization, or null if a matching organization could not be found

findByUuid_Last

public static Organization findByUuid_Last(String uuid,
                                           OrderByComparator<Organization> orderByComparator)
                                    throws NoSuchOrganizationException
Returns the last organization in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByUuid_Last

public static Organization fetchByUuid_Last(String uuid,
                                            OrderByComparator<Organization> orderByComparator)
Returns the last organization in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization, or null if a matching organization could not be found

findByUuid_PrevAndNext

public static Organization[] findByUuid_PrevAndNext(long organizationId,
                                                    String uuid,
                                                    OrderByComparator<Organization> orderByComparator)
                                             throws NoSuchOrganizationException
Returns the organizations before and after the current organization in the ordered set where uuid = ?.

Parameters:
organizationId - the primary key of the current organization
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

filterFindByUuid

public static List<Organization> filterFindByUuid(String uuid)
Returns all the organizations that the user has permission to view where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the matching organizations that the user has permission to view

filterFindByUuid

public static List<Organization> filterFindByUuid(String uuid,
                                                  int start,
                                                  int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
uuid - the uuid
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations that the user has permission to view

filterFindByUuid

public static List<Organization> filterFindByUuid(String uuid,
                                                  int start,
                                                  int end,
                                                  OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
uuid - the uuid
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations that the user has permission to view

filterFindByUuid_PrevAndNext

public static Organization[] filterFindByUuid_PrevAndNext(long organizationId,
                                                          String uuid,
                                                          OrderByComparator<Organization> orderByComparator)
                                                   throws NoSuchOrganizationException
Returns the organizations before and after the current organization in the ordered set of organizations that the user has permission to view where uuid = ?.

Parameters:
organizationId - the primary key of the current organization
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

removeByUuid

public static void removeByUuid(String uuid)
Removes all the organizations where uuid = ? from the database.

Parameters:
uuid - the uuid

countByUuid

public static int countByUuid(String uuid)
Returns the number of organizations where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the number of matching organizations

filterCountByUuid

public static int filterCountByUuid(String uuid)
Returns the number of organizations that the user has permission to view where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the number of matching organizations that the user has permission to view

findByUuid_C

public static List<Organization> findByUuid_C(String uuid,
                                              long companyId)
Returns all the organizations where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the matching organizations

findByUuid_C

public static List<Organization> findByUuid_C(String uuid,
                                              long companyId,
                                              int start,
                                              int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
uuid - the uuid
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations

findByUuid_C

public static List<Organization> findByUuid_C(String uuid,
                                              long companyId,
                                              int start,
                                              int end,
                                              OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
uuid - the uuid
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations

findByUuid_C

public static List<Organization> findByUuid_C(String uuid,
                                              long companyId,
                                              int start,
                                              int end,
                                              OrderByComparator<Organization> orderByComparator,
                                              boolean retrieveFromCache)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
uuid - the uuid
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching organizations

findByUuid_C_First

public static Organization findByUuid_C_First(String uuid,
                                              long companyId,
                                              OrderByComparator<Organization> orderByComparator)
                                       throws NoSuchOrganizationException
Returns the first organization in the ordered set where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByUuid_C_First

public static Organization fetchByUuid_C_First(String uuid,
                                               long companyId,
                                               OrderByComparator<Organization> orderByComparator)
Returns the first organization in the ordered set where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization, or null if a matching organization could not be found

findByUuid_C_Last

public static Organization findByUuid_C_Last(String uuid,
                                             long companyId,
                                             OrderByComparator<Organization> orderByComparator)
                                      throws NoSuchOrganizationException
Returns the last organization in the ordered set where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByUuid_C_Last

public static Organization fetchByUuid_C_Last(String uuid,
                                              long companyId,
                                              OrderByComparator<Organization> orderByComparator)
Returns the last organization in the ordered set where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization, or null if a matching organization could not be found

findByUuid_C_PrevAndNext

public static Organization[] findByUuid_C_PrevAndNext(long organizationId,
                                                      String uuid,
                                                      long companyId,
                                                      OrderByComparator<Organization> orderByComparator)
                                               throws NoSuchOrganizationException
Returns the organizations before and after the current organization in the ordered set where uuid = ? and companyId = ?.

Parameters:
organizationId - the primary key of the current organization
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

filterFindByUuid_C

public static List<Organization> filterFindByUuid_C(String uuid,
                                                    long companyId)
Returns all the organizations that the user has permission to view where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the matching organizations that the user has permission to view

filterFindByUuid_C

public static List<Organization> filterFindByUuid_C(String uuid,
                                                    long companyId,
                                                    int start,
                                                    int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
uuid - the uuid
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations that the user has permission to view

filterFindByUuid_C

public static List<Organization> filterFindByUuid_C(String uuid,
                                                    long companyId,
                                                    int start,
                                                    int end,
                                                    OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
uuid - the uuid
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations that the user has permission to view

filterFindByUuid_C_PrevAndNext

public static Organization[] filterFindByUuid_C_PrevAndNext(long organizationId,
                                                            String uuid,
                                                            long companyId,
                                                            OrderByComparator<Organization> orderByComparator)
                                                     throws NoSuchOrganizationException
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 = ?.

Parameters:
organizationId - the primary key of the current organization
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

removeByUuid_C

public static void removeByUuid_C(String uuid,
                                  long companyId)
Removes all the organizations where uuid = ? and companyId = ? from the database.

Parameters:
uuid - the uuid
companyId - the company ID

countByUuid_C

public static int countByUuid_C(String uuid,
                                long companyId)
Returns the number of organizations where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the number of matching organizations

filterCountByUuid_C

public static int filterCountByUuid_C(String uuid,
                                      long companyId)
Returns the number of organizations that the user has permission to view where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the number of matching organizations that the user has permission to view

findByCompanyId

public static List<Organization> findByCompanyId(long companyId)
Returns all the organizations where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the matching organizations

findByCompanyId

public static List<Organization> findByCompanyId(long companyId,
                                                 int start,
                                                 int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations

findByCompanyId

public static List<Organization> findByCompanyId(long companyId,
                                                 int start,
                                                 int end,
                                                 OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations

findByCompanyId

public static List<Organization> findByCompanyId(long companyId,
                                                 int start,
                                                 int end,
                                                 OrderByComparator<Organization> orderByComparator,
                                                 boolean retrieveFromCache)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching organizations

findByCompanyId_First

public static Organization findByCompanyId_First(long companyId,
                                                 OrderByComparator<Organization> orderByComparator)
                                          throws NoSuchOrganizationException
Returns the first organization in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByCompanyId_First

public static Organization fetchByCompanyId_First(long companyId,
                                                  OrderByComparator<Organization> orderByComparator)
Returns the first organization in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization, or null if a matching organization could not be found

findByCompanyId_Last

public static Organization findByCompanyId_Last(long companyId,
                                                OrderByComparator<Organization> orderByComparator)
                                         throws NoSuchOrganizationException
Returns the last organization in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByCompanyId_Last

public static Organization fetchByCompanyId_Last(long companyId,
                                                 OrderByComparator<Organization> orderByComparator)
Returns the last organization in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization, or null if a matching organization could not be found

findByCompanyId_PrevAndNext

public static Organization[] findByCompanyId_PrevAndNext(long organizationId,
                                                         long companyId,
                                                         OrderByComparator<Organization> orderByComparator)
                                                  throws NoSuchOrganizationException
Returns the organizations before and after the current organization in the ordered set where companyId = ?.

Parameters:
organizationId - the primary key of the current organization
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

filterFindByCompanyId

public static List<Organization> filterFindByCompanyId(long companyId)
Returns all the organizations that the user has permission to view where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the matching organizations that the user has permission to view

filterFindByCompanyId

public static List<Organization> filterFindByCompanyId(long companyId,
                                                       int start,
                                                       int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations that the user has permission to view

filterFindByCompanyId

public static List<Organization> filterFindByCompanyId(long companyId,
                                                       int start,
                                                       int end,
                                                       OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations that the user has permission to view

filterFindByCompanyId_PrevAndNext

public static Organization[] filterFindByCompanyId_PrevAndNext(long organizationId,
                                                               long companyId,
                                                               OrderByComparator<Organization> orderByComparator)
                                                        throws NoSuchOrganizationException
Returns the organizations before and after the current organization in the ordered set of organizations that the user has permission to view where companyId = ?.

Parameters:
organizationId - the primary key of the current organization
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

removeByCompanyId

public static void removeByCompanyId(long companyId)
Removes all the organizations where companyId = ? from the database.

Parameters:
companyId - the company ID

countByCompanyId

public static int countByCompanyId(long companyId)
Returns the number of organizations where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the number of matching organizations

filterCountByCompanyId

public static int filterCountByCompanyId(long companyId)
Returns the number of organizations that the user has permission to view where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the number of matching organizations that the user has permission to view

findByLocations

public static List<Organization> findByLocations(long companyId)
Returns all the organizations where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the matching organizations

findByLocations

public static List<Organization> findByLocations(long companyId,
                                                 int start,
                                                 int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations

findByLocations

public static List<Organization> findByLocations(long companyId,
                                                 int start,
                                                 int end,
                                                 OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations

findByLocations

public static List<Organization> findByLocations(long companyId,
                                                 int start,
                                                 int end,
                                                 OrderByComparator<Organization> orderByComparator,
                                                 boolean retrieveFromCache)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching organizations

findByLocations_First

public static Organization findByLocations_First(long companyId,
                                                 OrderByComparator<Organization> orderByComparator)
                                          throws NoSuchOrganizationException
Returns the first organization in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByLocations_First

public static Organization fetchByLocations_First(long companyId,
                                                  OrderByComparator<Organization> orderByComparator)
Returns the first organization in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization, or null if a matching organization could not be found

findByLocations_Last

public static Organization findByLocations_Last(long companyId,
                                                OrderByComparator<Organization> orderByComparator)
                                         throws NoSuchOrganizationException
Returns the last organization in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByLocations_Last

public static Organization fetchByLocations_Last(long companyId,
                                                 OrderByComparator<Organization> orderByComparator)
Returns the last organization in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization, or null if a matching organization could not be found

findByLocations_PrevAndNext

public static Organization[] findByLocations_PrevAndNext(long organizationId,
                                                         long companyId,
                                                         OrderByComparator<Organization> orderByComparator)
                                                  throws NoSuchOrganizationException
Returns the organizations before and after the current organization in the ordered set where companyId = ?.

Parameters:
organizationId - the primary key of the current organization
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

filterFindByLocations

public static List<Organization> filterFindByLocations(long companyId)
Returns all the organizations that the user has permission to view where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the matching organizations that the user has permission to view

filterFindByLocations

public static List<Organization> filterFindByLocations(long companyId,
                                                       int start,
                                                       int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations that the user has permission to view

filterFindByLocations

public static List<Organization> filterFindByLocations(long companyId,
                                                       int start,
                                                       int end,
                                                       OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations that the user has permission to view

filterFindByLocations_PrevAndNext

public static Organization[] filterFindByLocations_PrevAndNext(long organizationId,
                                                               long companyId,
                                                               OrderByComparator<Organization> orderByComparator)
                                                        throws NoSuchOrganizationException
Returns the organizations before and after the current organization in the ordered set of organizations that the user has permission to view where companyId = ?.

Parameters:
organizationId - the primary key of the current organization
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

removeByLocations

public static void removeByLocations(long companyId)
Removes all the organizations where companyId = ? from the database.

Parameters:
companyId - the company ID

countByLocations

public static int countByLocations(long companyId)
Returns the number of organizations where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the number of matching organizations

filterCountByLocations

public static int filterCountByLocations(long companyId)
Returns the number of organizations that the user has permission to view where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the number of matching organizations that the user has permission to view

findByC_P

public static List<Organization> findByC_P(long companyId,
                                           long parentOrganizationId)
Returns all the organizations where companyId = ? and parentOrganizationId = ?.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
Returns:
the matching organizations

findByC_P

public static List<Organization> findByC_P(long companyId,
                                           long parentOrganizationId,
                                           int start,
                                           int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations

findByC_P

public static List<Organization> findByC_P(long companyId,
                                           long parentOrganizationId,
                                           int start,
                                           int end,
                                           OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations

findByC_P

public static List<Organization> findByC_P(long companyId,
                                           long parentOrganizationId,
                                           int start,
                                           int end,
                                           OrderByComparator<Organization> orderByComparator,
                                           boolean retrieveFromCache)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching organizations

findByC_P_First

public static Organization findByC_P_First(long companyId,
                                           long parentOrganizationId,
                                           OrderByComparator<Organization> orderByComparator)
                                    throws NoSuchOrganizationException
Returns the first organization in the ordered set where companyId = ? and parentOrganizationId = ?.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByC_P_First

public static Organization fetchByC_P_First(long companyId,
                                            long parentOrganizationId,
                                            OrderByComparator<Organization> orderByComparator)
Returns the first organization in the ordered set where companyId = ? and parentOrganizationId = ?.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization, or null if a matching organization could not be found

findByC_P_Last

public static Organization findByC_P_Last(long companyId,
                                          long parentOrganizationId,
                                          OrderByComparator<Organization> orderByComparator)
                                   throws NoSuchOrganizationException
Returns the last organization in the ordered set where companyId = ? and parentOrganizationId = ?.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByC_P_Last

public static Organization fetchByC_P_Last(long companyId,
                                           long parentOrganizationId,
                                           OrderByComparator<Organization> orderByComparator)
Returns the last organization in the ordered set where companyId = ? and parentOrganizationId = ?.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization, or null if a matching organization could not be found

findByC_P_PrevAndNext

public static Organization[] findByC_P_PrevAndNext(long organizationId,
                                                   long companyId,
                                                   long parentOrganizationId,
                                                   OrderByComparator<Organization> orderByComparator)
                                            throws NoSuchOrganizationException
Returns the organizations before and after the current organization in the ordered set where companyId = ? and parentOrganizationId = ?.

Parameters:
organizationId - the primary key of the current organization
companyId - the company ID
parentOrganizationId - the parent organization ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

filterFindByC_P

public static List<Organization> filterFindByC_P(long companyId,
                                                 long parentOrganizationId)
Returns all the organizations that the user has permission to view where companyId = ? and parentOrganizationId = ?.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
Returns:
the matching organizations that the user has permission to view

filterFindByC_P

public static List<Organization> filterFindByC_P(long companyId,
                                                 long parentOrganizationId,
                                                 int start,
                                                 int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations that the user has permission to view

filterFindByC_P

public static List<Organization> filterFindByC_P(long companyId,
                                                 long parentOrganizationId,
                                                 int start,
                                                 int end,
                                                 OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations that the user has permission to view

filterFindByC_P_PrevAndNext

public static Organization[] filterFindByC_P_PrevAndNext(long organizationId,
                                                         long companyId,
                                                         long parentOrganizationId,
                                                         OrderByComparator<Organization> orderByComparator)
                                                  throws NoSuchOrganizationException
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 = ?.

Parameters:
organizationId - the primary key of the current organization
companyId - the company ID
parentOrganizationId - the parent organization ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

removeByC_P

public static void removeByC_P(long companyId,
                               long parentOrganizationId)
Removes all the organizations where companyId = ? and parentOrganizationId = ? from the database.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID

countByC_P

public static int countByC_P(long companyId,
                             long parentOrganizationId)
Returns the number of organizations where companyId = ? and parentOrganizationId = ?.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
Returns:
the number of matching organizations

filterCountByC_P

public static int filterCountByC_P(long companyId,
                                   long parentOrganizationId)
Returns the number of organizations that the user has permission to view where companyId = ? and parentOrganizationId = ?.

Parameters:
companyId - the company ID
parentOrganizationId - the parent organization ID
Returns:
the number of matching organizations that the user has permission to view

findByC_T

public static List<Organization> findByC_T(long companyId,
                                           String treePath)
Returns all the organizations where companyId = ? and treePath LIKE ?.

Parameters:
companyId - the company ID
treePath - the tree path
Returns:
the matching organizations

findByC_T

public static List<Organization> findByC_T(long companyId,
                                           String treePath,
                                           int start,
                                           int end)
Returns a range of all the organizations where companyId = ? and treePath LIKE ?.

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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
treePath - the tree path
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations

findByC_T

public static List<Organization> findByC_T(long companyId,
                                           String treePath,
                                           int start,
                                           int end,
                                           OrderByComparator<Organization> orderByComparator)
Returns an ordered range of all the organizations where companyId = ? and treePath LIKE ?.

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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
treePath - the tree path
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations

findByC_T

public static List<Organization> findByC_T(long companyId,
                                           String treePath,
                                           int start,
                                           int end,
                                           OrderByComparator<Organization> orderByComparator,
                                           boolean retrieveFromCache)
Returns an ordered range of all the organizations where companyId = ? and treePath LIKE ?.

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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
treePath - the tree path
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching organizations

findByC_T_First

public static Organization findByC_T_First(long companyId,
                                           String treePath,
                                           OrderByComparator<Organization> orderByComparator)
                                    throws NoSuchOrganizationException
Returns the first organization in the ordered set where companyId = ? and treePath LIKE ?.

Parameters:
companyId - the company ID
treePath - the tree path
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByC_T_First

public static Organization fetchByC_T_First(long companyId,
                                            String treePath,
                                            OrderByComparator<Organization> orderByComparator)
Returns the first organization in the ordered set where companyId = ? and treePath LIKE ?.

Parameters:
companyId - the company ID
treePath - the tree path
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization, or null if a matching organization could not be found

findByC_T_Last

public static Organization findByC_T_Last(long companyId,
                                          String treePath,
                                          OrderByComparator<Organization> orderByComparator)
                                   throws NoSuchOrganizationException
Returns the last organization in the ordered set where companyId = ? and treePath LIKE ?.

Parameters:
companyId - the company ID
treePath - the tree path
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByC_T_Last

public static Organization fetchByC_T_Last(long companyId,
                                           String treePath,
                                           OrderByComparator<Organization> orderByComparator)
Returns the last organization in the ordered set where companyId = ? and treePath LIKE ?.

Parameters:
companyId - the company ID
treePath - the tree path
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization, or null if a matching organization could not be found

findByC_T_PrevAndNext

public static Organization[] findByC_T_PrevAndNext(long organizationId,
                                                   long companyId,
                                                   String treePath,
                                                   OrderByComparator<Organization> orderByComparator)
                                            throws NoSuchOrganizationException
Returns the organizations before and after the current organization in the ordered set where companyId = ? and treePath LIKE ?.

Parameters:
organizationId - the primary key of the current organization
companyId - the company ID
treePath - the tree path
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

filterFindByC_T

public static List<Organization> filterFindByC_T(long companyId,
                                                 String treePath)
Returns all the organizations that the user has permission to view where companyId = ? and treePath LIKE ?.

Parameters:
companyId - the company ID
treePath - the tree path
Returns:
the matching organizations that the user has permission to view

filterFindByC_T

public static List<Organization> filterFindByC_T(long companyId,
                                                 String treePath,
                                                 int start,
                                                 int end)
Returns a range of all the organizations that the user has permission to view where companyId = ? and treePath LIKE ?.

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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
treePath - the tree path
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations that the user has permission to view

filterFindByC_T

public static List<Organization> filterFindByC_T(long companyId,
                                                 String treePath,
                                                 int start,
                                                 int end,
                                                 OrderByComparator<Organization> orderByComparator)
Returns an ordered range of all the organizations that the user has permissions to view where companyId = ? and treePath LIKE ?.

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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
companyId - the company ID
treePath - the tree path
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations that the user has permission to view

filterFindByC_T_PrevAndNext

public static Organization[] filterFindByC_T_PrevAndNext(long organizationId,
                                                         long companyId,
                                                         String treePath,
                                                         OrderByComparator<Organization> orderByComparator)
                                                  throws NoSuchOrganizationException
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 treePath LIKE ?.

Parameters:
organizationId - the primary key of the current organization
companyId - the company ID
treePath - the tree path
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

removeByC_T

public static void removeByC_T(long companyId,
                               String treePath)
Removes all the organizations where companyId = ? and treePath LIKE ? from the database.

Parameters:
companyId - the company ID
treePath - the tree path

countByC_T

public static int countByC_T(long companyId,
                             String treePath)
Returns the number of organizations where companyId = ? and treePath LIKE ?.

Parameters:
companyId - the company ID
treePath - the tree path
Returns:
the number of matching organizations

filterCountByC_T

public static int filterCountByC_T(long companyId,
                                   String treePath)
Returns the number of organizations that the user has permission to view where companyId = ? and treePath LIKE ?.

Parameters:
companyId - the company ID
treePath - the tree path
Returns:
the number of matching organizations that the user has permission to view

findByC_N

public static Organization findByC_N(long companyId,
                                     String name)
                              throws NoSuchOrganizationException
Returns the organization where companyId = ? and name = ? or throws a NoSuchOrganizationException if it could not be found.

Parameters:
companyId - the company ID
name - the name
Returns:
the matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByC_N

public static Organization fetchByC_N(long companyId,
                                      String name)
Returns the organization where companyId = ? and name = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
companyId - the company ID
name - the name
Returns:
the matching organization, or null if a matching organization could not be found

fetchByC_N

public static Organization fetchByC_N(long companyId,
                                      String name,
                                      boolean retrieveFromCache)
Returns the organization where companyId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
companyId - the company ID
name - the name
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the matching organization, or null if a matching organization could not be found

removeByC_N

public static Organization removeByC_N(long companyId,
                                       String name)
                                throws NoSuchOrganizationException
Removes the organization where companyId = ? and name = ? from the database.

Parameters:
companyId - the company ID
name - the name
Returns:
the organization that was removed
Throws:
NoSuchOrganizationException

countByC_N

public static int countByC_N(long companyId,
                             String name)
Returns the number of organizations where companyId = ? and name = ?.

Parameters:
companyId - the company ID
name - the name
Returns:
the number of matching organizations

findByO_C_P

public static List<Organization> findByO_C_P(long organizationId,
                                             long companyId,
                                             long parentOrganizationId)
Returns all the organizations where organizationId > ? and companyId = ? and parentOrganizationId = ?.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
Returns:
the matching organizations

findByO_C_P

public static List<Organization> findByO_C_P(long organizationId,
                                             long companyId,
                                             long parentOrganizationId,
                                             int start,
                                             int end)
Returns a range of all the organizations where organizationId > ? and 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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations

findByO_C_P

public static List<Organization> findByO_C_P(long organizationId,
                                             long companyId,
                                             long parentOrganizationId,
                                             int start,
                                             int end,
                                             OrderByComparator<Organization> orderByComparator)
Returns an ordered range of all the organizations where organizationId > ? and 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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations

findByO_C_P

public static List<Organization> findByO_C_P(long organizationId,
                                             long companyId,
                                             long parentOrganizationId,
                                             int start,
                                             int end,
                                             OrderByComparator<Organization> orderByComparator,
                                             boolean retrieveFromCache)
Returns an ordered range of all the organizations where organizationId > ? and 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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching organizations

findByO_C_P_First

public static Organization findByO_C_P_First(long organizationId,
                                             long companyId,
                                             long parentOrganizationId,
                                             OrderByComparator<Organization> orderByComparator)
                                      throws NoSuchOrganizationException
Returns the first organization in the ordered set where organizationId > ? and companyId = ? and parentOrganizationId = ?.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByO_C_P_First

public static Organization fetchByO_C_P_First(long organizationId,
                                              long companyId,
                                              long parentOrganizationId,
                                              OrderByComparator<Organization> orderByComparator)
Returns the first organization in the ordered set where organizationId > ? and companyId = ? and parentOrganizationId = ?.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching organization, or null if a matching organization could not be found

findByO_C_P_Last

public static Organization findByO_C_P_Last(long organizationId,
                                            long companyId,
                                            long parentOrganizationId,
                                            OrderByComparator<Organization> orderByComparator)
                                     throws NoSuchOrganizationException
Returns the last organization in the ordered set where organizationId > ? and companyId = ? and parentOrganizationId = ?.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization
Throws:
NoSuchOrganizationException - if a matching organization could not be found

fetchByO_C_P_Last

public static Organization fetchByO_C_P_Last(long organizationId,
                                             long companyId,
                                             long parentOrganizationId,
                                             OrderByComparator<Organization> orderByComparator)
Returns the last organization in the ordered set where organizationId > ? and companyId = ? and parentOrganizationId = ?.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching organization, or null if a matching organization could not be found

filterFindByO_C_P

public static List<Organization> filterFindByO_C_P(long organizationId,
                                                   long companyId,
                                                   long parentOrganizationId)
Returns all the organizations that the user has permission to view where organizationId > ? and companyId = ? and parentOrganizationId = ?.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
Returns:
the matching organizations that the user has permission to view

filterFindByO_C_P

public static List<Organization> filterFindByO_C_P(long organizationId,
                                                   long companyId,
                                                   long parentOrganizationId,
                                                   int start,
                                                   int end)
Returns a range of all the organizations that the user has permission to view where organizationId > ? and 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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of matching organizations that the user has permission to view

filterFindByO_C_P

public static List<Organization> filterFindByO_C_P(long organizationId,
                                                   long companyId,
                                                   long parentOrganizationId,
                                                   int start,
                                                   int end,
                                                   OrderByComparator<Organization> orderByComparator)
Returns an ordered range of all the organizations that the user has permissions to view where organizationId > ? and 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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching organizations that the user has permission to view

removeByO_C_P

public static void removeByO_C_P(long organizationId,
                                 long companyId,
                                 long parentOrganizationId)
Removes all the organizations where organizationId > ? and companyId = ? and parentOrganizationId = ? from the database.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID

countByO_C_P

public static int countByO_C_P(long organizationId,
                               long companyId,
                               long parentOrganizationId)
Returns the number of organizations where organizationId > ? and companyId = ? and parentOrganizationId = ?.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
Returns:
the number of matching organizations

filterCountByO_C_P

public static int filterCountByO_C_P(long organizationId,
                                     long companyId,
                                     long parentOrganizationId)
Returns the number of organizations that the user has permission to view where organizationId > ? and companyId = ? and parentOrganizationId = ?.

Parameters:
organizationId - the organization ID
companyId - the company ID
parentOrganizationId - the parent organization ID
Returns:
the number of matching organizations that the user has permission to view

cacheResult

public static void cacheResult(Organization organization)
Caches the organization in the entity cache if it is enabled.

Parameters:
organization - the organization

cacheResult

public static void cacheResult(List<Organization> organizations)
Caches the organizations in the entity cache if it is enabled.

Parameters:
organizations - the organizations

create

public static Organization create(long organizationId)
Creates a new organization with the primary key. Does not add the organization to the database.

Parameters:
organizationId - the primary key for the new organization
Returns:
the new organization

remove

public static Organization remove(long organizationId)
                           throws NoSuchOrganizationException
Removes the organization with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
organizationId - the primary key of the organization
Returns:
the organization that was removed
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

updateImpl

public static Organization updateImpl(Organization organization)

findByPrimaryKey

public static Organization findByPrimaryKey(long organizationId)
                                     throws NoSuchOrganizationException
Returns the organization with the primary key or throws a NoSuchOrganizationException if it could not be found.

Parameters:
organizationId - the primary key of the organization
Returns:
the organization
Throws:
NoSuchOrganizationException - if a organization with the primary key could not be found

fetchByPrimaryKey

public static Organization fetchByPrimaryKey(long organizationId)
Returns the organization with the primary key or returns null if it could not be found.

Parameters:
organizationId - the primary key of the organization
Returns:
the organization, or null if a organization with the primary key could not be found

fetchByPrimaryKeys

public static Map<Serializable,Organization> fetchByPrimaryKeys(Set<Serializable> primaryKeys)

findAll

public static List<Organization> findAll()
Returns all the organizations.

Returns:
the organizations

findAll

public static List<Organization> findAll(int start,
                                         int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of organizations

findAll

public static List<Organization> findAll(int start,
                                         int end,
                                         OrderByComparator<Organization> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of organizations

findAll

public static List<Organization> findAll(int start,
                                         int end,
                                         OrderByComparator<Organization> orderByComparator,
                                         boolean retrieveFromCache)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of organizations

removeAll

public static void removeAll()
Removes all the organizations from the database.


countAll

public static int countAll()
Returns the number of organizations.

Returns:
the number of organizations

getGroupPrimaryKeys

public static long[] getGroupPrimaryKeys(long pk)
Returns the primaryKeys of groups associated with the organization.

Parameters:
pk - the primary key of the organization
Returns:
long[] of the primaryKeys of groups associated with the organization

getGroups

public static List<Group> getGroups(long pk)
Returns all the groups associated with the organization.

Parameters:
pk - the primary key of the organization
Returns:
the groups associated with the organization

getGroups

public static List<Group> getGroups(long pk,
                                    int start,
                                    int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
pk - the primary key of the organization
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of groups associated with the organization

getGroups

public static List<Group> getGroups(long pk,
                                    int start,
                                    int end,
                                    OrderByComparator<Group> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
pk - the primary key of the organization
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of groups associated with the organization

getGroupsSize

public static int getGroupsSize(long pk)
Returns the number of groups associated with the organization.

Parameters:
pk - the primary key of the organization
Returns:
the number of groups associated with the organization

containsGroup

public static boolean containsGroup(long pk,
                                    long groupPK)
Returns true if the group is associated with the organization.

Parameters:
pk - the primary key of the organization
groupPK - the primary key of the group
Returns:
true if the group is associated with the organization; false otherwise

containsGroups

public static boolean containsGroups(long pk)
Returns true if the organization has any groups associated with it.

Parameters:
pk - the primary key of the organization to check for associations with groups
Returns:
true if the organization has any groups associated with it; false otherwise

addGroup

public static void addGroup(long pk,
                            long groupPK)
Adds an association between the organization and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
groupPK - the primary key of the group

addGroup

public static void addGroup(long pk,
                            Group group)
Adds an association between the organization and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
group - the group

addGroups

public static void addGroups(long pk,
                             long[] groupPKs)
Adds an association between the organization and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
groupPKs - the primary keys of the groups

addGroups

public static void addGroups(long pk,
                             List<Group> groups)
Adds an association between the organization and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
groups - the groups

clearGroups

public static void clearGroups(long pk)
Clears all associations between the organization and its groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization to clear the associated groups from

removeGroup

public static void removeGroup(long pk,
                               long groupPK)
Removes the association between the organization and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
groupPK - the primary key of the group

removeGroup

public static void removeGroup(long pk,
                               Group group)
Removes the association between the organization and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
group - the group

removeGroups

public static void removeGroups(long pk,
                                long[] groupPKs)
Removes the association between the organization and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
groupPKs - the primary keys of the groups

removeGroups

public static void removeGroups(long pk,
                                List<Group> groups)
Removes the association between the organization and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
groups - the groups

setGroups

public static void setGroups(long pk,
                             long[] 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.

Parameters:
pk - the primary key of the organization
groupPKs - the primary keys of the groups to be associated with the organization

setGroups

public static void setGroups(long pk,
                             List<Group> 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.

Parameters:
pk - the primary key of the organization
groups - the groups to be associated with the organization

getUserPrimaryKeys

public static long[] getUserPrimaryKeys(long pk)
Returns the primaryKeys of users associated with the organization.

Parameters:
pk - the primary key of the organization
Returns:
long[] of the primaryKeys of users associated with the organization

getUsers

public static List<User> getUsers(long pk)
Returns all the users associated with the organization.

Parameters:
pk - the primary key of the organization
Returns:
the users associated with the organization

getUsers

public static List<User> getUsers(long pk,
                                  int start,
                                  int end)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
pk - the primary key of the organization
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
Returns:
the range of users associated with the organization

getUsers

public static List<User> getUsers(long pk,
                                  int start,
                                  int end,
                                  OrderByComparator<User> orderByComparator)
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 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 QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from 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.

Parameters:
pk - the primary key of the organization
start - the lower bound of the range of organizations
end - the upper bound of the range of organizations (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of users associated with the organization

getUsersSize

public static int getUsersSize(long pk)
Returns the number of users associated with the organization.

Parameters:
pk - the primary key of the organization
Returns:
the number of users associated with the organization

containsUser

public static boolean containsUser(long pk,
                                   long userPK)
Returns true if the user is associated with the organization.

Parameters:
pk - the primary key of the organization
userPK - the primary key of the user
Returns:
true if the user is associated with the organization; false otherwise

containsUsers

public static boolean containsUsers(long pk)
Returns true if the organization has any users associated with it.

Parameters:
pk - the primary key of the organization to check for associations with users
Returns:
true if the organization has any users associated with it; false otherwise

addUser

public static void addUser(long pk,
                           long userPK)
Adds an association between the organization and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
userPK - the primary key of the user

addUser

public static void addUser(long pk,
                           User user)
Adds an association between the organization and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
user - the user

addUsers

public static void addUsers(long pk,
                            long[] userPKs)
Adds an association between the organization and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
userPKs - the primary keys of the users

addUsers

public static void addUsers(long pk,
                            List<User> users)
Adds an association between the organization and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
users - the users

clearUsers

public static void clearUsers(long pk)
Clears all associations between the organization and its users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization to clear the associated users from

removeUser

public static void removeUser(long pk,
                              long userPK)
Removes the association between the organization and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
userPK - the primary key of the user

removeUser

public static void removeUser(long pk,
                              User user)
Removes the association between the organization and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
user - the user

removeUsers

public static void removeUsers(long pk,
                               long[] userPKs)
Removes the association between the organization and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
userPKs - the primary keys of the users

removeUsers

public static void removeUsers(long pk,
                               List<User> users)
Removes the association between the organization and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the organization
users - the users

setUsers

public static void setUsers(long pk,
                            long[] 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.

Parameters:
pk - the primary key of the organization
userPKs - the primary keys of the users to be associated with the organization

setUsers

public static void setUsers(long pk,
                            List<User> 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.

Parameters:
pk - the primary key of the organization
users - the users to be associated with the organization

getBadColumnNames

public static Set<String> getBadColumnNames()

getPersistence

public static OrganizationPersistence getPersistence()

Liferay 7.0-ce-b4