Liferay 6.2-ce-ga5

com.liferay.portal.service.persistence
Class OrgGroupRoleUtil

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

@ProviderType
public class OrgGroupRoleUtil
extends Object

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

Caching information and settings can be found in portal.properties

See Also:
OrgGroupRolePersistence, OrgGroupRolePersistenceImpl

Constructor Summary
OrgGroupRoleUtil()
           
 
Method Summary
static void cacheResult(List<OrgGroupRole> orgGroupRoles)
          Caches the org group roles in the entity cache if it is enabled.
static void cacheResult(OrgGroupRole orgGroupRole)
          Caches the org group role in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(OrgGroupRole orgGroupRole)
           
static int countAll()
          Returns the number of org group roles.
static int countByGroupId(long groupId)
          Returns the number of org group roles where groupId = ?.
static int countByRoleId(long roleId)
          Returns the number of org group roles where roleId = ?.
static long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static OrgGroupRole create(OrgGroupRolePK orgGroupRolePK)
          Creates a new org group role with the primary key.
static OrgGroupRole fetchByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Returns the first org group role in the ordered set where groupId = ?.
static OrgGroupRole fetchByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Returns the last org group role in the ordered set where groupId = ?.
static OrgGroupRole fetchByPrimaryKey(OrgGroupRolePK orgGroupRolePK)
          Returns the org group role with the primary key or returns null if it could not be found.
static OrgGroupRole fetchByRoleId_First(long roleId, OrderByComparator orderByComparator)
          Returns the first org group role in the ordered set where roleId = ?.
static OrgGroupRole fetchByRoleId_Last(long roleId, OrderByComparator orderByComparator)
          Returns the last org group role in the ordered set where roleId = ?.
static List<OrgGroupRole> findAll()
          Returns all the org group roles.
static List<OrgGroupRole> findAll(int start, int end)
          Returns a range of all the org group roles.
static List<OrgGroupRole> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the org group roles.
static OrgGroupRole findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Returns the first org group role in the ordered set where groupId = ?.
static OrgGroupRole findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Returns the last org group role in the ordered set where groupId = ?.
static OrgGroupRole[] findByGroupId_PrevAndNext(OrgGroupRolePK orgGroupRolePK, long groupId, OrderByComparator orderByComparator)
          Returns the org group roles before and after the current org group role in the ordered set where groupId = ?.
static List<OrgGroupRole> findByGroupId(long groupId)
          Returns all the org group roles where groupId = ?.
static List<OrgGroupRole> findByGroupId(long groupId, int start, int end)
          Returns a range of all the org group roles where groupId = ?.
static List<OrgGroupRole> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the org group roles where groupId = ?.
static OrgGroupRole findByPrimaryKey(OrgGroupRolePK orgGroupRolePK)
          Returns the org group role with the primary key or throws a NoSuchOrgGroupRoleException if it could not be found.
static OrgGroupRole findByRoleId_First(long roleId, OrderByComparator orderByComparator)
          Returns the first org group role in the ordered set where roleId = ?.
static OrgGroupRole findByRoleId_Last(long roleId, OrderByComparator orderByComparator)
          Returns the last org group role in the ordered set where roleId = ?.
static OrgGroupRole[] findByRoleId_PrevAndNext(OrgGroupRolePK orgGroupRolePK, long roleId, OrderByComparator orderByComparator)
          Returns the org group roles before and after the current org group role in the ordered set where roleId = ?.
static List<OrgGroupRole> findByRoleId(long roleId)
          Returns all the org group roles where roleId = ?.
static List<OrgGroupRole> findByRoleId(long roleId, int start, int end)
          Returns a range of all the org group roles where roleId = ?.
static List<OrgGroupRole> findByRoleId(long roleId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the org group roles where roleId = ?.
static List<OrgGroupRole> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<OrgGroupRole> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<OrgGroupRole> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static OrgGroupRolePersistence getPersistence()
           
static OrgGroupRole remove(OrgGroupRolePK orgGroupRolePK)
          Removes the org group role with the primary key from the database.
static void removeAll()
          Removes all the org group roles from the database.
static void removeByGroupId(long groupId)
          Removes all the org group roles where groupId = ? from the database.
static void removeByRoleId(long roleId)
          Removes all the org group roles where roleId = ? from the database.
 void setPersistence(OrgGroupRolePersistence persistence)
          Deprecated. As of 6.2.0
static OrgGroupRole update(OrgGroupRole orgGroupRole)
           
static OrgGroupRole update(OrgGroupRole orgGroupRole, ServiceContext serviceContext)
           
static OrgGroupRole updateImpl(OrgGroupRole orgGroupRole)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OrgGroupRoleUtil

public OrgGroupRoleUtil()
Method Detail

clearCache

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

clearCache

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

countWithDynamicQuery

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

findWithDynamicQuery

public static List<OrgGroupRole> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                               throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<OrgGroupRole> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                      int start,
                                                      int end)
                                               throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

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

update

public static OrgGroupRole update(OrgGroupRole orgGroupRole)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel)

update

public static OrgGroupRole update(OrgGroupRole orgGroupRole,
                                  ServiceContext serviceContext)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, ServiceContext)

findByGroupId

public static List<OrgGroupRole> findByGroupId(long groupId)
                                        throws SystemException
Returns all the org group roles where groupId = ?.

Parameters:
groupId - the group ID
Returns:
the matching org group roles
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<OrgGroupRole> findByGroupId(long groupId,
                                               int start,
                                               int end)
                                        throws SystemException
Returns a range of all the org group roles where groupId = ?.

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 OrgGroupRoleModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
start - the lower bound of the range of org group roles
end - the upper bound of the range of org group roles (not inclusive)
Returns:
the range of matching org group roles
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<OrgGroupRole> findByGroupId(long groupId,
                                               int start,
                                               int end,
                                               OrderByComparator orderByComparator)
                                        throws SystemException
Returns an ordered range of all the org group roles where groupId = ?.

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 OrgGroupRoleModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
groupId - the group ID
start - the lower bound of the range of org group roles
end - the upper bound of the range of org group roles (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching org group roles
Throws:
SystemException - if a system exception occurred

findByGroupId_First

public static OrgGroupRole findByGroupId_First(long groupId,
                                               OrderByComparator orderByComparator)
                                        throws NoSuchOrgGroupRoleException,
                                               SystemException
Returns the first org group role in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching org group role
Throws:
NoSuchOrgGroupRoleException - if a matching org group role could not be found
SystemException - if a system exception occurred

fetchByGroupId_First

public static OrgGroupRole fetchByGroupId_First(long groupId,
                                                OrderByComparator orderByComparator)
                                         throws SystemException
Returns the first org group role in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching org group role, or null if a matching org group role could not be found
Throws:
SystemException - if a system exception occurred

findByGroupId_Last

public static OrgGroupRole findByGroupId_Last(long groupId,
                                              OrderByComparator orderByComparator)
                                       throws NoSuchOrgGroupRoleException,
                                              SystemException
Returns the last org group role in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching org group role
Throws:
NoSuchOrgGroupRoleException - if a matching org group role could not be found
SystemException - if a system exception occurred

fetchByGroupId_Last

public static OrgGroupRole fetchByGroupId_Last(long groupId,
                                               OrderByComparator orderByComparator)
                                        throws SystemException
Returns the last org group role in the ordered set where groupId = ?.

Parameters:
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching org group role, or null if a matching org group role could not be found
Throws:
SystemException - if a system exception occurred

findByGroupId_PrevAndNext

public static OrgGroupRole[] findByGroupId_PrevAndNext(OrgGroupRolePK orgGroupRolePK,
                                                       long groupId,
                                                       OrderByComparator orderByComparator)
                                                throws NoSuchOrgGroupRoleException,
                                                       SystemException
Returns the org group roles before and after the current org group role in the ordered set where groupId = ?.

Parameters:
orgGroupRolePK - the primary key of the current org group role
groupId - the group ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next org group role
Throws:
NoSuchOrgGroupRoleException - if a org group role with the primary key could not be found
SystemException - if a system exception occurred

removeByGroupId

public static void removeByGroupId(long groupId)
                            throws SystemException
Removes all the org group roles where groupId = ? from the database.

Parameters:
groupId - the group ID
Throws:
SystemException - if a system exception occurred

countByGroupId

public static int countByGroupId(long groupId)
                          throws SystemException
Returns the number of org group roles where groupId = ?.

Parameters:
groupId - the group ID
Returns:
the number of matching org group roles
Throws:
SystemException - if a system exception occurred

findByRoleId

public static List<OrgGroupRole> findByRoleId(long roleId)
                                       throws SystemException
Returns all the org group roles where roleId = ?.

Parameters:
roleId - the role ID
Returns:
the matching org group roles
Throws:
SystemException - if a system exception occurred

findByRoleId

public static List<OrgGroupRole> findByRoleId(long roleId,
                                              int start,
                                              int end)
                                       throws SystemException
Returns a range of all the org group roles where roleId = ?.

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 OrgGroupRoleModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
roleId - the role ID
start - the lower bound of the range of org group roles
end - the upper bound of the range of org group roles (not inclusive)
Returns:
the range of matching org group roles
Throws:
SystemException - if a system exception occurred

findByRoleId

public static List<OrgGroupRole> findByRoleId(long roleId,
                                              int start,
                                              int end,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Returns an ordered range of all the org group roles where roleId = ?.

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 OrgGroupRoleModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
roleId - the role ID
start - the lower bound of the range of org group roles
end - the upper bound of the range of org group roles (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching org group roles
Throws:
SystemException - if a system exception occurred

findByRoleId_First

public static OrgGroupRole findByRoleId_First(long roleId,
                                              OrderByComparator orderByComparator)
                                       throws NoSuchOrgGroupRoleException,
                                              SystemException
Returns the first org group role in the ordered set where roleId = ?.

Parameters:
roleId - the role ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching org group role
Throws:
NoSuchOrgGroupRoleException - if a matching org group role could not be found
SystemException - if a system exception occurred

fetchByRoleId_First

public static OrgGroupRole fetchByRoleId_First(long roleId,
                                               OrderByComparator orderByComparator)
                                        throws SystemException
Returns the first org group role in the ordered set where roleId = ?.

Parameters:
roleId - the role ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching org group role, or null if a matching org group role could not be found
Throws:
SystemException - if a system exception occurred

findByRoleId_Last

public static OrgGroupRole findByRoleId_Last(long roleId,
                                             OrderByComparator orderByComparator)
                                      throws NoSuchOrgGroupRoleException,
                                             SystemException
Returns the last org group role in the ordered set where roleId = ?.

Parameters:
roleId - the role ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching org group role
Throws:
NoSuchOrgGroupRoleException - if a matching org group role could not be found
SystemException - if a system exception occurred

fetchByRoleId_Last

public static OrgGroupRole fetchByRoleId_Last(long roleId,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Returns the last org group role in the ordered set where roleId = ?.

Parameters:
roleId - the role ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching org group role, or null if a matching org group role could not be found
Throws:
SystemException - if a system exception occurred

findByRoleId_PrevAndNext

public static OrgGroupRole[] findByRoleId_PrevAndNext(OrgGroupRolePK orgGroupRolePK,
                                                      long roleId,
                                                      OrderByComparator orderByComparator)
                                               throws NoSuchOrgGroupRoleException,
                                                      SystemException
Returns the org group roles before and after the current org group role in the ordered set where roleId = ?.

Parameters:
orgGroupRolePK - the primary key of the current org group role
roleId - the role ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next org group role
Throws:
NoSuchOrgGroupRoleException - if a org group role with the primary key could not be found
SystemException - if a system exception occurred

removeByRoleId

public static void removeByRoleId(long roleId)
                           throws SystemException
Removes all the org group roles where roleId = ? from the database.

Parameters:
roleId - the role ID
Throws:
SystemException - if a system exception occurred

countByRoleId

public static int countByRoleId(long roleId)
                         throws SystemException
Returns the number of org group roles where roleId = ?.

Parameters:
roleId - the role ID
Returns:
the number of matching org group roles
Throws:
SystemException - if a system exception occurred

cacheResult

public static void cacheResult(OrgGroupRole orgGroupRole)
Caches the org group role in the entity cache if it is enabled.

Parameters:
orgGroupRole - the org group role

cacheResult

public static void cacheResult(List<OrgGroupRole> orgGroupRoles)
Caches the org group roles in the entity cache if it is enabled.

Parameters:
orgGroupRoles - the org group roles

create

public static OrgGroupRole create(OrgGroupRolePK orgGroupRolePK)
Creates a new org group role with the primary key. Does not add the org group role to the database.

Parameters:
orgGroupRolePK - the primary key for the new org group role
Returns:
the new org group role

remove

public static OrgGroupRole remove(OrgGroupRolePK orgGroupRolePK)
                           throws NoSuchOrgGroupRoleException,
                                  SystemException
Removes the org group role with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
orgGroupRolePK - the primary key of the org group role
Returns:
the org group role that was removed
Throws:
NoSuchOrgGroupRoleException - if a org group role with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static OrgGroupRole updateImpl(OrgGroupRole orgGroupRole)
                               throws SystemException
Throws:
SystemException

findByPrimaryKey

public static OrgGroupRole findByPrimaryKey(OrgGroupRolePK orgGroupRolePK)
                                     throws NoSuchOrgGroupRoleException,
                                            SystemException
Returns the org group role with the primary key or throws a NoSuchOrgGroupRoleException if it could not be found.

Parameters:
orgGroupRolePK - the primary key of the org group role
Returns:
the org group role
Throws:
NoSuchOrgGroupRoleException - if a org group role with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static OrgGroupRole fetchByPrimaryKey(OrgGroupRolePK orgGroupRolePK)
                                      throws SystemException
Returns the org group role with the primary key or returns null if it could not be found.

Parameters:
orgGroupRolePK - the primary key of the org group role
Returns:
the org group role, or null if a org group role with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findAll

public static List<OrgGroupRole> findAll()
                                  throws SystemException
Returns all the org group roles.

Returns:
the org group roles
Throws:
SystemException - if a system exception occurred

findAll

public static List<OrgGroupRole> findAll(int start,
                                         int end)
                                  throws SystemException
Returns a range of all the org group roles.

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 OrgGroupRoleModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of org group roles
end - the upper bound of the range of org group roles (not inclusive)
Returns:
the range of org group roles
Throws:
SystemException - if a system exception occurred

findAll

public static List<OrgGroupRole> findAll(int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                  throws SystemException
Returns an ordered range of all the org group roles.

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 OrgGroupRoleModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of org group roles
end - the upper bound of the range of org group roles (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of org group roles
Throws:
SystemException - if a system exception occurred

removeAll

public static void removeAll()
                      throws SystemException
Removes all the org group roles from the database.

Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Returns the number of org group roles.

Returns:
the number of org group roles
Throws:
SystemException - if a system exception occurred

getPersistence

public static OrgGroupRolePersistence getPersistence()

setPersistence

public void setPersistence(OrgGroupRolePersistence persistence)
Deprecated. As of 6.2.0


Liferay 6.2-ce-ga5