@ProviderType
public class OrganizationUtil
extends java.lang.Object
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
OrganizationPersistence,
OrganizationPersistenceImpl| Constructor and Description |
|---|
OrganizationUtil() |
| Modifier and Type | Method and Description |
|---|---|
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,
java.util.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,
java.util.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(java.util.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,
java.lang.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,
java.lang.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(java.lang.String uuid,
long companyId)
Returns the number of organizations where uuid = ? and companyId = ?.
|
static int |
countByUuid(java.lang.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,
java.lang.String name)
Returns the organization where companyId = ? and name = ? or returns
null if it could not be found. |
static Organization |
fetchByC_N(long companyId,
java.lang.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 orderByComparator)
Returns the first organization in the ordered set where companyId = ? and parentOrganizationId = ?.
|
static Organization |
fetchByC_P_Last(long companyId,
long parentOrganizationId,
OrderByComparator orderByComparator)
Returns the last organization in the ordered set where companyId = ? and parentOrganizationId = ?.
|
static Organization |
fetchByC_T_First(long companyId,
java.lang.String treePath,
OrderByComparator orderByComparator)
Returns the first organization in the ordered set where companyId = ? and treePath LIKE ?.
|
static Organization |
fetchByC_T_Last(long companyId,
java.lang.String treePath,
OrderByComparator orderByComparator)
Returns the last organization in the ordered set where companyId = ? and treePath LIKE ?.
|
static Organization |
fetchByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
Returns the first organization in the ordered set where companyId = ?.
|
static Organization |
fetchByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last organization in the ordered set where companyId = ?.
|
static Organization |
fetchByLocations_First(long companyId,
OrderByComparator orderByComparator)
Returns the first organization in the ordered set where companyId = ?.
|
static Organization |
fetchByLocations_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last organization in the ordered set where companyId = ?.
|
static Organization |
fetchByO_C_P_First(long organizationId,
long companyId,
long parentOrganizationId,
OrderByComparator 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 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 Organization |
fetchByUuid_C_First(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the first organization in the ordered set where uuid = ? and companyId = ?.
|
static Organization |
fetchByUuid_C_Last(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the last organization in the ordered set where uuid = ? and companyId = ?.
|
static Organization |
fetchByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the first organization in the ordered set where uuid = ?.
|
static Organization |
fetchByUuid_Last(java.lang.String uuid,
OrderByComparator 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,
java.lang.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(java.lang.String uuid,
long companyId)
Returns the number of organizations that the user has permission to view where uuid = ? and companyId = ?.
|
static int |
filterCountByUuid(java.lang.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 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 java.util.List<Organization> |
filterFindByC_P(long companyId,
long parentOrganizationId)
Returns all the organizations that the user has permission to view where companyId = ? and parentOrganizationId = ?.
|
static java.util.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 java.util.List<Organization> |
filterFindByC_P(long companyId,
long parentOrganizationId,
int start,
int end,
OrderByComparator 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,
java.lang.String treePath,
OrderByComparator 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 java.util.List<Organization> |
filterFindByC_T(long companyId,
java.lang.String treePath)
Returns all the organizations that the user has permission to view where companyId = ? and treePath LIKE ?.
|
static java.util.List<Organization> |
filterFindByC_T(long companyId,
java.lang.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 java.util.List<Organization> |
filterFindByC_T(long companyId,
java.lang.String treePath,
int start,
int end,
OrderByComparator 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 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 java.util.List<Organization> |
filterFindByCompanyId(long companyId)
Returns all the organizations that the user has permission to view where companyId = ?.
|
static java.util.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 java.util.List<Organization> |
filterFindByCompanyId(long companyId,
int start,
int end,
OrderByComparator 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 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 java.util.List<Organization> |
filterFindByLocations(long companyId)
Returns all the organizations that the user has permission to view where companyId = ?.
|
static java.util.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 java.util.List<Organization> |
filterFindByLocations(long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the organizations that the user has permissions to view where companyId = ?.
|
static java.util.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 java.util.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 java.util.List<Organization> |
filterFindByO_C_P(long organizationId,
long companyId,
long parentOrganizationId,
int start,
int end,
OrderByComparator 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,
java.lang.String uuid,
long companyId,
OrderByComparator 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 java.util.List<Organization> |
filterFindByUuid_C(java.lang.String uuid,
long companyId)
Returns all the organizations that the user has permission to view where uuid = ? and companyId = ?.
|
static java.util.List<Organization> |
filterFindByUuid_C(java.lang.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 java.util.List<Organization> |
filterFindByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator 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,
java.lang.String uuid,
OrderByComparator 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 java.util.List<Organization> |
filterFindByUuid(java.lang.String uuid)
Returns all the organizations that the user has permission to view where uuid = ?.
|
static java.util.List<Organization> |
filterFindByUuid(java.lang.String uuid,
int start,
int end)
Returns a range of all the organizations that the user has permission to view where uuid = ?.
|
static java.util.List<Organization> |
filterFindByUuid(java.lang.String uuid,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the organizations that the user has permissions to view where uuid = ?.
|
static java.util.List<Organization> |
findAll()
Returns all the organizations.
|
static java.util.List<Organization> |
findAll(int start,
int end)
Returns a range of all the organizations.
|
static java.util.List<Organization> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the organizations.
|
static Organization |
findByC_N(long companyId,
java.lang.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 orderByComparator)
Returns the first organization in the ordered set where companyId = ? and parentOrganizationId = ?.
|
static Organization |
findByC_P_Last(long companyId,
long parentOrganizationId,
OrderByComparator 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 orderByComparator)
Returns the organizations before and after the current organization in the ordered set where companyId = ? and parentOrganizationId = ?.
|
static java.util.List<Organization> |
findByC_P(long companyId,
long parentOrganizationId)
Returns all the organizations where companyId = ? and parentOrganizationId = ?.
|
static java.util.List<Organization> |
findByC_P(long companyId,
long parentOrganizationId,
int start,
int end)
Returns a range of all the organizations where companyId = ? and parentOrganizationId = ?.
|
static java.util.List<Organization> |
findByC_P(long companyId,
long parentOrganizationId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the organizations where companyId = ? and parentOrganizationId = ?.
|
static Organization |
findByC_T_First(long companyId,
java.lang.String treePath,
OrderByComparator orderByComparator)
Returns the first organization in the ordered set where companyId = ? and treePath LIKE ?.
|
static Organization |
findByC_T_Last(long companyId,
java.lang.String treePath,
OrderByComparator orderByComparator)
Returns the last organization in the ordered set where companyId = ? and treePath LIKE ?.
|
static Organization[] |
findByC_T_PrevAndNext(long organizationId,
long companyId,
java.lang.String treePath,
OrderByComparator orderByComparator)
Returns the organizations before and after the current organization in the ordered set where companyId = ? and treePath LIKE ?.
|
static java.util.List<Organization> |
findByC_T(long companyId,
java.lang.String treePath)
Returns all the organizations where companyId = ? and treePath LIKE ?.
|
static java.util.List<Organization> |
findByC_T(long companyId,
java.lang.String treePath,
int start,
int end)
Returns a range of all the organizations where companyId = ? and treePath LIKE ?.
|
static java.util.List<Organization> |
findByC_T(long companyId,
java.lang.String treePath,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the organizations where companyId = ? and treePath LIKE ?.
|
static Organization |
findByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
Returns the first organization in the ordered set where companyId = ?.
|
static Organization |
findByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last organization in the ordered set where companyId = ?.
|
static Organization[] |
findByCompanyId_PrevAndNext(long organizationId,
long companyId,
OrderByComparator orderByComparator)
Returns the organizations before and after the current organization in the ordered set where companyId = ?.
|
static java.util.List<Organization> |
findByCompanyId(long companyId)
Returns all the organizations where companyId = ?.
|
static java.util.List<Organization> |
findByCompanyId(long companyId,
int start,
int end)
Returns a range of all the organizations where companyId = ?.
|
static java.util.List<Organization> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the organizations where companyId = ?.
|
static Organization |
findByLocations_First(long companyId,
OrderByComparator orderByComparator)
Returns the first organization in the ordered set where companyId = ?.
|
static Organization |
findByLocations_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last organization in the ordered set where companyId = ?.
|
static Organization[] |
findByLocations_PrevAndNext(long organizationId,
long companyId,
OrderByComparator orderByComparator)
Returns the organizations before and after the current organization in the ordered set where companyId = ?.
|
static java.util.List<Organization> |
findByLocations(long companyId)
Returns all the organizations where companyId = ?.
|
static java.util.List<Organization> |
findByLocations(long companyId,
int start,
int end)
Returns a range of all the organizations where companyId = ?.
|
static java.util.List<Organization> |
findByLocations(long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the organizations where companyId = ?.
|
static Organization |
findByO_C_P_First(long organizationId,
long companyId,
long parentOrganizationId,
OrderByComparator 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 orderByComparator)
Returns the last organization in the ordered set where organizationId > ? and companyId = ? and parentOrganizationId = ?.
|
static java.util.List<Organization> |
findByO_C_P(long organizationId,
long companyId,
long parentOrganizationId)
Returns all the organizations where organizationId > ? and companyId = ? and parentOrganizationId = ?.
|
static java.util.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 java.util.List<Organization> |
findByO_C_P(long organizationId,
long companyId,
long parentOrganizationId,
int start,
int end,
OrderByComparator orderByComparator)
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(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the first organization in the ordered set where uuid = ? and companyId = ?.
|
static Organization |
findByUuid_C_Last(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the last organization in the ordered set where uuid = ? and companyId = ?.
|
static Organization[] |
findByUuid_C_PrevAndNext(long organizationId,
java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the organizations before and after the current organization in the ordered set where uuid = ? and companyId = ?.
|
static java.util.List<Organization> |
findByUuid_C(java.lang.String uuid,
long companyId)
Returns all the organizations where uuid = ? and companyId = ?.
|
static java.util.List<Organization> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end)
Returns a range of all the organizations where uuid = ? and companyId = ?.
|
static java.util.List<Organization> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the organizations where uuid = ? and companyId = ?.
|
static Organization |
findByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the first organization in the ordered set where uuid = ?.
|
static Organization |
findByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the last organization in the ordered set where uuid = ?.
|
static Organization[] |
findByUuid_PrevAndNext(long organizationId,
java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the organizations before and after the current organization in the ordered set where uuid = ?.
|
static java.util.List<Organization> |
findByUuid(java.lang.String uuid)
Returns all the organizations where uuid = ?.
|
static java.util.List<Organization> |
findByUuid(java.lang.String uuid,
int start,
int end)
Returns a range of all the organizations where uuid = ?.
|
static java.util.List<Organization> |
findByUuid(java.lang.String uuid,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the organizations where uuid = ?.
|
static java.util.List<Organization> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<Organization> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<Organization> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator) |
static java.util.List<Group> |
getGroups(long pk)
Returns all the groups associated with the organization.
|
static java.util.List<Group> |
getGroups(long pk,
int start,
int end)
Returns a range of all the groups associated with the organization.
|
static java.util.List<Group> |
getGroups(long pk,
int start,
int end,
OrderByComparator 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 java.util.List<User> |
getUsers(long pk)
Returns all the users associated with the organization.
|
static java.util.List<User> |
getUsers(long pk,
int start,
int end)
Returns a range of all the users associated with the organization.
|
static java.util.List<User> |
getUsers(long pk,
int start,
int end,
OrderByComparator 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,
java.lang.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,
java.lang.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(java.lang.String uuid,
long companyId)
Removes all the organizations where uuid = ? and companyId = ? from the database.
|
static void |
removeByUuid(java.lang.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,
java.util.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,
java.util.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,
java.util.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.
|
void |
setPersistence(OrganizationPersistence persistence)
Deprecated.
As of 6.2.0
|
static void |
setUsers(long pk,
java.util.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) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(Organization organization)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)public static java.util.List<Organization> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)public static java.util.List<Organization> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
public static java.util.List<Organization> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
public static Organization update(Organization organization) throws SystemException
public static Organization update(Organization organization, ServiceContext serviceContext) throws SystemException
public static java.util.List<Organization> findByUuid(java.lang.String uuid) throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static java.util.List<Organization> findByUuid(java.lang.String uuid, int start, int end) throws SystemException
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.
uuid - the uuidstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> findByUuid(java.lang.String uuid, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
uuid - the uuidstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization findByUuid_First(java.lang.String uuid, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByUuid_First(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization findByUuid_Last(java.lang.String uuid, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByUuid_Last(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization[] findByUuid_PrevAndNext(long organizationId, java.lang.String uuid, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationuuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByUuid(java.lang.String uuid) throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByUuid(java.lang.String uuid, int start, int end) throws SystemException
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.
uuid - the uuidstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByUuid(java.lang.String uuid, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
uuid - the uuidstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization[] filterFindByUuid_PrevAndNext(long organizationId, java.lang.String uuid, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationuuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByUuid(java.lang.String uuid)
throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static int countByUuid(java.lang.String uuid)
throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static int filterCountByUuid(java.lang.String uuid)
throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static java.util.List<Organization> findByUuid_C(java.lang.String uuid, long companyId) throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<Organization> findByUuid_C(java.lang.String uuid, long companyId, int start, int end) throws SystemException
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.
uuid - the uuidcompanyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> findByUuid_C(java.lang.String uuid, long companyId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
uuid - the uuidcompanyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization findByUuid_C_First(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByUuid_C_First(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization findByUuid_C_Last(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByUuid_C_Last(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization[] findByUuid_C_PrevAndNext(long organizationId, java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationuuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByUuid_C(java.lang.String uuid, long companyId) throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByUuid_C(java.lang.String uuid, long companyId, int start, int end) throws SystemException
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.
uuid - the uuidcompanyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByUuid_C(java.lang.String uuid, long companyId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
uuid - the uuidcompanyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization[] filterFindByUuid_C_PrevAndNext(long organizationId, java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationuuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByUuid_C(java.lang.String uuid,
long companyId)
throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static int countByUuid_C(java.lang.String uuid,
long companyId)
throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static int filterCountByUuid_C(java.lang.String uuid,
long companyId)
throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<Organization> findByCompanyId(long companyId) throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<Organization> findByCompanyId(long companyId, int start, int end) throws SystemException
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.
companyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> findByCompanyId(long companyId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
companyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization findByCompanyId_First(long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByCompanyId_First(long companyId, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization findByCompanyId_Last(long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByCompanyId_Last(long companyId, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization[] findByCompanyId_PrevAndNext(long organizationId, long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByCompanyId(long companyId) throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByCompanyId(long companyId, int start, int end) throws SystemException
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.
companyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByCompanyId(long companyId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
companyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization[] filterFindByCompanyId_PrevAndNext(long organizationId, long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByCompanyId(long companyId)
throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static int countByCompanyId(long companyId)
throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static int filterCountByCompanyId(long companyId)
throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<Organization> findByLocations(long companyId) throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<Organization> findByLocations(long companyId, int start, int end) throws SystemException
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.
companyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> findByLocations(long companyId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
companyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization findByLocations_First(long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByLocations_First(long companyId, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization findByLocations_Last(long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByLocations_Last(long companyId, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization[] findByLocations_PrevAndNext(long organizationId, long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByLocations(long companyId) throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByLocations(long companyId, int start, int end) throws SystemException
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.
companyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByLocations(long companyId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
companyId - the company IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization[] filterFindByLocations_PrevAndNext(long organizationId, long companyId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByLocations(long companyId)
throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static int countByLocations(long companyId)
throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static int filterCountByLocations(long companyId)
throws SystemException
companyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<Organization> findByC_P(long companyId, long parentOrganizationId) throws SystemException
companyId - the company IDparentOrganizationId - the parent organization IDSystemException - if a system exception occurredpublic static java.util.List<Organization> findByC_P(long companyId, long parentOrganizationId, int start, int end) throws SystemException
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.
companyId - the company IDparentOrganizationId - the parent organization IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> findByC_P(long companyId, long parentOrganizationId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
companyId - the company IDparentOrganizationId - the parent organization IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization findByC_P_First(long companyId, long parentOrganizationId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
companyId - the company IDparentOrganizationId - the parent organization IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByC_P_First(long companyId, long parentOrganizationId, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDparentOrganizationId - the parent organization IDorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization findByC_P_Last(long companyId, long parentOrganizationId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
companyId - the company IDparentOrganizationId - the parent organization IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByC_P_Last(long companyId, long parentOrganizationId, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDparentOrganizationId - the parent organization IDorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization[] findByC_P_PrevAndNext(long organizationId, long companyId, long parentOrganizationId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationcompanyId - the company IDparentOrganizationId - the parent organization IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByC_P(long companyId, long parentOrganizationId) throws SystemException
companyId - the company IDparentOrganizationId - the parent organization IDSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByC_P(long companyId, long parentOrganizationId, int start, int end) throws SystemException
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.
companyId - the company IDparentOrganizationId - the parent organization IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByC_P(long companyId, long parentOrganizationId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
companyId - the company IDparentOrganizationId - the parent organization IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization[] filterFindByC_P_PrevAndNext(long organizationId, long companyId, long parentOrganizationId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationcompanyId - the company IDparentOrganizationId - the parent organization IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByC_P(long companyId,
long parentOrganizationId)
throws SystemException
companyId - the company IDparentOrganizationId - the parent organization IDSystemException - if a system exception occurredpublic static int countByC_P(long companyId,
long parentOrganizationId)
throws SystemException
companyId - the company IDparentOrganizationId - the parent organization IDSystemException - if a system exception occurredpublic static int filterCountByC_P(long companyId,
long parentOrganizationId)
throws SystemException
companyId - the company IDparentOrganizationId - the parent organization IDSystemException - if a system exception occurredpublic static java.util.List<Organization> findByC_T(long companyId, java.lang.String treePath) throws SystemException
companyId - the company IDtreePath - the tree pathSystemException - if a system exception occurredpublic static java.util.List<Organization> findByC_T(long companyId, java.lang.String treePath, int start, int end) throws SystemException
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.
companyId - the company IDtreePath - the tree pathstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> findByC_T(long companyId, java.lang.String treePath, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
companyId - the company IDtreePath - the tree pathstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization findByC_T_First(long companyId, java.lang.String treePath, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
companyId - the company IDtreePath - the tree pathorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByC_T_First(long companyId, java.lang.String treePath, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDtreePath - the tree pathorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization findByC_T_Last(long companyId, java.lang.String treePath, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
companyId - the company IDtreePath - the tree pathorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByC_T_Last(long companyId, java.lang.String treePath, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDtreePath - the tree pathorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization[] findByC_T_PrevAndNext(long organizationId, long companyId, java.lang.String treePath, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationcompanyId - the company IDtreePath - the tree pathorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByC_T(long companyId, java.lang.String treePath) throws SystemException
companyId - the company IDtreePath - the tree pathSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByC_T(long companyId, java.lang.String treePath, int start, int end) throws SystemException
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.
companyId - the company IDtreePath - the tree pathstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByC_T(long companyId, java.lang.String treePath, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
companyId - the company IDtreePath - the tree pathstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization[] filterFindByC_T_PrevAndNext(long organizationId, long companyId, java.lang.String treePath, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the current organizationcompanyId - the company IDtreePath - the tree pathorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByC_T(long companyId,
java.lang.String treePath)
throws SystemException
companyId - the company IDtreePath - the tree pathSystemException - if a system exception occurredpublic static int countByC_T(long companyId,
java.lang.String treePath)
throws SystemException
companyId - the company IDtreePath - the tree pathSystemException - if a system exception occurredpublic static int filterCountByC_T(long companyId,
java.lang.String treePath)
throws SystemException
companyId - the company IDtreePath - the tree pathSystemException - if a system exception occurredpublic static Organization findByC_N(long companyId, java.lang.String name) throws NoSuchOrganizationException, SystemException
NoSuchOrganizationException if it could not be found.companyId - the company IDname - the nameNoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByC_N(long companyId, java.lang.String name) throws SystemException
null if it could not be found. Uses the finder cache.companyId - the company IDname - the namenull if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByC_N(long companyId, java.lang.String name, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.companyId - the company IDname - the nameretrieveFromCache - whether to use the finder cachenull if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization removeByC_N(long companyId, java.lang.String name) throws NoSuchOrganizationException, SystemException
companyId - the company IDname - the nameSystemException - if a system exception occurredNoSuchOrganizationExceptionpublic static int countByC_N(long companyId,
java.lang.String name)
throws SystemException
companyId - the company IDname - the nameSystemException - if a system exception occurredpublic static java.util.List<Organization> findByO_C_P(long organizationId, long companyId, long parentOrganizationId) throws SystemException
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDSystemException - if a system exception occurredpublic static java.util.List<Organization> findByO_C_P(long organizationId, long companyId, long parentOrganizationId, int start, int end) throws SystemException
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.
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> findByO_C_P(long organizationId, long companyId, long parentOrganizationId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static Organization findByO_C_P_First(long organizationId, long companyId, long parentOrganizationId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByO_C_P_First(long organizationId, long companyId, long parentOrganizationId, OrderByComparator orderByComparator) throws SystemException
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization findByO_C_P_Last(long organizationId, long companyId, long parentOrganizationId, OrderByComparator orderByComparator) throws NoSuchOrganizationException, SystemException
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDorderByComparator - the comparator to order the set by (optionally null)NoSuchOrganizationException - if a matching organization could not be foundSystemException - if a system exception occurredpublic static Organization fetchByO_C_P_Last(long organizationId, long companyId, long parentOrganizationId, OrderByComparator orderByComparator) throws SystemException
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDorderByComparator - the comparator to order the set by (optionally null)null if a matching organization could not be foundSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByO_C_P(long organizationId, long companyId, long parentOrganizationId) throws SystemException
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDSystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByO_C_P(long organizationId, long companyId, long parentOrganizationId, int start, int end) throws SystemException
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.
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> filterFindByO_C_P(long organizationId, long companyId, long parentOrganizationId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static void removeByO_C_P(long organizationId,
long companyId,
long parentOrganizationId)
throws SystemException
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDSystemException - if a system exception occurredpublic static int countByO_C_P(long organizationId,
long companyId,
long parentOrganizationId)
throws SystemException
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDSystemException - if a system exception occurredpublic static int filterCountByO_C_P(long organizationId,
long companyId,
long parentOrganizationId)
throws SystemException
organizationId - the organization IDcompanyId - the company IDparentOrganizationId - the parent organization IDSystemException - if a system exception occurredpublic static void cacheResult(Organization organization)
organization - the organizationpublic static void cacheResult(java.util.List<Organization> organizations)
organizations - the organizationspublic static Organization create(long organizationId)
organizationId - the primary key for the new organizationpublic static Organization remove(long organizationId) throws NoSuchOrganizationException, SystemException
organizationId - the primary key of the organizationNoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static Organization updateImpl(Organization organization) throws SystemException
SystemExceptionpublic static Organization findByPrimaryKey(long organizationId) throws NoSuchOrganizationException, SystemException
NoSuchOrganizationException if it could not be found.organizationId - the primary key of the organizationNoSuchOrganizationException - if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static Organization fetchByPrimaryKey(long organizationId) throws SystemException
null if it could not be found.organizationId - the primary key of the organizationnull if a organization with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<Organization> findAll() throws SystemException
SystemException - if a system exception occurredpublic static java.util.List<Organization> findAll(int start, int end) throws SystemException
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.
start - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Organization> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
start - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static void removeAll()
throws SystemException
SystemException - if a system exception occurredpublic static int countAll()
throws SystemException
SystemException - if a system exception occurredpublic static java.util.List<Group> getGroups(long pk) throws SystemException
pk - the primary key of the organizationSystemException - if a system exception occurredpublic static java.util.List<Group> getGroups(long pk, int start, int end) throws SystemException
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.
pk - the primary key of the organizationstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<Group> getGroups(long pk, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
pk - the primary key of the organizationstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static int getGroupsSize(long pk)
throws SystemException
pk - the primary key of the organizationSystemException - if a system exception occurredpublic static boolean containsGroup(long pk,
long groupPK)
throws SystemException
true if the group is associated with the organization.pk - the primary key of the organizationgroupPK - the primary key of the grouptrue if the group is associated with the organization; false otherwiseSystemException - if a system exception occurredpublic static boolean containsGroups(long pk)
throws SystemException
true if the organization has any groups associated with it.pk - the primary key of the organization to check for associations with groupstrue if the organization has any groups associated with it; false otherwiseSystemException - if a system exception occurredpublic static void addGroup(long pk,
long groupPK)
throws SystemException
pk - the primary key of the organizationgroupPK - the primary key of the groupSystemException - if a system exception occurredpublic static void addGroup(long pk,
Group group)
throws SystemException
pk - the primary key of the organizationgroup - the groupSystemException - if a system exception occurredpublic static void addGroups(long pk,
long[] groupPKs)
throws SystemException
pk - the primary key of the organizationgroupPKs - the primary keys of the groupsSystemException - if a system exception occurredpublic static void addGroups(long pk,
java.util.List<Group> groups)
throws SystemException
pk - the primary key of the organizationgroups - the groupsSystemException - if a system exception occurredpublic static void clearGroups(long pk)
throws SystemException
pk - the primary key of the organization to clear the associated groups fromSystemException - if a system exception occurredpublic static void removeGroup(long pk,
long groupPK)
throws SystemException
pk - the primary key of the organizationgroupPK - the primary key of the groupSystemException - if a system exception occurredpublic static void removeGroup(long pk,
Group group)
throws SystemException
pk - the primary key of the organizationgroup - the groupSystemException - if a system exception occurredpublic static void removeGroups(long pk,
long[] groupPKs)
throws SystemException
pk - the primary key of the organizationgroupPKs - the primary keys of the groupsSystemException - if a system exception occurredpublic static void removeGroups(long pk,
java.util.List<Group> groups)
throws SystemException
pk - the primary key of the organizationgroups - the groupsSystemException - if a system exception occurredpublic static void setGroups(long pk,
long[] groupPKs)
throws SystemException
pk - the primary key of the organizationgroupPKs - the primary keys of the groups to be associated with the organizationSystemException - if a system exception occurredpublic static void setGroups(long pk,
java.util.List<Group> groups)
throws SystemException
pk - the primary key of the organizationgroups - the groups to be associated with the organizationSystemException - if a system exception occurredpublic static java.util.List<User> getUsers(long pk) throws SystemException
pk - the primary key of the organizationSystemException - if a system exception occurredpublic static java.util.List<User> getUsers(long pk, int start, int end) throws SystemException
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.
pk - the primary key of the organizationstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<User> getUsers(long pk, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
pk - the primary key of the organizationstart - the lower bound of the range of organizationsend - the upper bound of the range of organizations (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static int getUsersSize(long pk)
throws SystemException
pk - the primary key of the organizationSystemException - if a system exception occurredpublic static boolean containsUser(long pk,
long userPK)
throws SystemException
true if the user is associated with the organization.pk - the primary key of the organizationuserPK - the primary key of the usertrue if the user is associated with the organization; false otherwiseSystemException - if a system exception occurredpublic static boolean containsUsers(long pk)
throws SystemException
true if the organization has any users associated with it.pk - the primary key of the organization to check for associations with userstrue if the organization has any users associated with it; false otherwiseSystemException - if a system exception occurredpublic static void addUser(long pk,
long userPK)
throws SystemException
pk - the primary key of the organizationuserPK - the primary key of the userSystemException - if a system exception occurredpublic static void addUser(long pk,
User user)
throws SystemException
pk - the primary key of the organizationuser - the userSystemException - if a system exception occurredpublic static void addUsers(long pk,
long[] userPKs)
throws SystemException
pk - the primary key of the organizationuserPKs - the primary keys of the usersSystemException - if a system exception occurredpublic static void addUsers(long pk,
java.util.List<User> users)
throws SystemException
pk - the primary key of the organizationusers - the usersSystemException - if a system exception occurredpublic static void clearUsers(long pk)
throws SystemException
pk - the primary key of the organization to clear the associated users fromSystemException - if a system exception occurredpublic static void removeUser(long pk,
long userPK)
throws SystemException
pk - the primary key of the organizationuserPK - the primary key of the userSystemException - if a system exception occurredpublic static void removeUser(long pk,
User user)
throws SystemException
pk - the primary key of the organizationuser - the userSystemException - if a system exception occurredpublic static void removeUsers(long pk,
long[] userPKs)
throws SystemException
pk - the primary key of the organizationuserPKs - the primary keys of the usersSystemException - if a system exception occurredpublic static void removeUsers(long pk,
java.util.List<User> users)
throws SystemException
pk - the primary key of the organizationusers - the usersSystemException - if a system exception occurredpublic static void setUsers(long pk,
long[] userPKs)
throws SystemException
pk - the primary key of the organizationuserPKs - the primary keys of the users to be associated with the organizationSystemException - if a system exception occurredpublic static void setUsers(long pk,
java.util.List<User> users)
throws SystemException
pk - the primary key of the organizationusers - the users to be associated with the organizationSystemException - if a system exception occurredpublic static OrganizationPersistence getPersistence()
public void setPersistence(OrganizationPersistence persistence)