Liferay 6.0.5

com.liferay.portal.service.persistence
Interface OrgGroupRolePersistence

All Superinterfaces:
BasePersistence<OrgGroupRole>
All Known Implementing Classes:
OrgGroupRolePersistenceImpl

public interface OrgGroupRolePersistence
extends BasePersistence<OrgGroupRole>

The persistence interface for the org group role service.

Never modify or reference this interface directly. Always use OrgGroupRoleUtil to access the org group role persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

See Also:
OrgGroupRolePersistenceImpl, OrgGroupRoleUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 void cacheResult(List<OrgGroupRole> orgGroupRoles)
          Caches the org group roles in the entity cache if it is enabled.
 void cacheResult(OrgGroupRole orgGroupRole)
          Caches the org group role in the entity cache if it is enabled.
 int countAll()
          Counts all the org group roles.
 int countByGroupId(long groupId)
          Counts all the org group roles where groupId = ?.
 int countByRoleId(long roleId)
          Counts all the org group roles where roleId = ?.
 OrgGroupRole create(OrgGroupRolePK orgGroupRolePK)
          Creates a new org group role with the primary key.
 OrgGroupRole fetchByPrimaryKey(OrgGroupRolePK orgGroupRolePK)
          Finds the org group role with the primary key or returns null if it could not be found.
 List<OrgGroupRole> findAll()
          Finds all the org group roles.
 List<OrgGroupRole> findAll(int start, int end)
          Finds a range of all the org group roles.
 List<OrgGroupRole> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the org group roles.
 OrgGroupRole findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first org group role in the ordered set where groupId = ?.
 OrgGroupRole findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last org group role in the ordered set where groupId = ?.
 OrgGroupRole[] findByGroupId_PrevAndNext(OrgGroupRolePK orgGroupRolePK, long groupId, OrderByComparator orderByComparator)
          Finds the org group roles before and after the current org group role in the ordered set where groupId = ?.
 List<OrgGroupRole> findByGroupId(long groupId)
          Finds all the org group roles where groupId = ?.
 List<OrgGroupRole> findByGroupId(long groupId, int start, int end)
          Finds a range of all the org group roles where groupId = ?.
 List<OrgGroupRole> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the org group roles where groupId = ?.
 OrgGroupRole findByPrimaryKey(OrgGroupRolePK orgGroupRolePK)
          Finds the org group role with the primary key or throws a NoSuchOrgGroupRoleException if it could not be found.
 OrgGroupRole findByRoleId_First(long roleId, OrderByComparator orderByComparator)
          Finds the first org group role in the ordered set where roleId = ?.
 OrgGroupRole findByRoleId_Last(long roleId, OrderByComparator orderByComparator)
          Finds the last org group role in the ordered set where roleId = ?.
 OrgGroupRole[] findByRoleId_PrevAndNext(OrgGroupRolePK orgGroupRolePK, long roleId, OrderByComparator orderByComparator)
          Finds the org group roles before and after the current org group role in the ordered set where roleId = ?.
 List<OrgGroupRole> findByRoleId(long roleId)
          Finds all the org group roles where roleId = ?.
 List<OrgGroupRole> findByRoleId(long roleId, int start, int end)
          Finds a range of all the org group roles where roleId = ?.
 List<OrgGroupRole> findByRoleId(long roleId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the org group roles where roleId = ?.
 OrgGroupRole remove(OrgGroupRolePK orgGroupRolePK)
          Removes the org group role with the primary key from the database.
 void removeAll()
          Removes all the org group roles from the database.
 void removeByGroupId(long groupId)
          Removes all the org group roles where groupId = ? from the database.
 void removeByRoleId(long roleId)
          Removes all the org group roles where roleId = ? from the database.
 OrgGroupRole updateImpl(OrgGroupRole orgGroupRole, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

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

Parameters:
orgGroupRole - the org group role to cache

cacheResult

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

Parameters:
orgGroupRoles - the org group roles to cache

create

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

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 to remove
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

OrgGroupRole updateImpl(OrgGroupRole orgGroupRole,
                        boolean merge)
                        throws SystemException
Throws:
SystemException

findByPrimaryKey

OrgGroupRole findByPrimaryKey(OrgGroupRolePK orgGroupRolePK)
                              throws NoSuchOrgGroupRoleException,
                                     SystemException
Finds 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 to find
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

OrgGroupRole fetchByPrimaryKey(OrgGroupRolePK orgGroupRolePK)
                               throws SystemException
Finds 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 to find
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

findByGroupId

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

Parameters:
groupId - the group id to search with
Returns:
the matching org group roles
Throws:
SystemException - if a system exception occurred

findByGroupId

List<OrgGroupRole> findByGroupId(long groupId,
                                 int start,
                                 int end)
                                 throws SystemException
Finds 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.

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

findByGroupId

List<OrgGroupRole> findByGroupId(long groupId,
                                 int start,
                                 int end,
                                 OrderByComparator orderByComparator)
                                 throws SystemException
Finds 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.

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

findByGroupId_First

OrgGroupRole findByGroupId_First(long groupId,
                                 OrderByComparator orderByComparator)
                                 throws NoSuchOrgGroupRoleException,
                                        SystemException
Finds the first org group role in the ordered set 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.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
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

findByGroupId_Last

OrgGroupRole findByGroupId_Last(long groupId,
                                OrderByComparator orderByComparator)
                                throws NoSuchOrgGroupRoleException,
                                       SystemException
Finds the last org group role in the ordered set 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.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
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

findByGroupId_PrevAndNext

OrgGroupRole[] findByGroupId_PrevAndNext(OrgGroupRolePK orgGroupRolePK,
                                         long groupId,
                                         OrderByComparator orderByComparator)
                                         throws NoSuchOrgGroupRoleException,
                                                SystemException
Finds the org group roles before and after the current org group role in the ordered set 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.

Parameters:
orgGroupRolePK - the primary key of the current org group role
groupId - the group id to search with
orderByComparator - the comparator to order the set by
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

findByRoleId

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

Parameters:
roleId - the role id to search with
Returns:
the matching org group roles
Throws:
SystemException - if a system exception occurred

findByRoleId

List<OrgGroupRole> findByRoleId(long roleId,
                                int start,
                                int end)
                                throws SystemException
Finds 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.

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

findByRoleId

List<OrgGroupRole> findByRoleId(long roleId,
                                int start,
                                int end,
                                OrderByComparator orderByComparator)
                                throws SystemException
Finds 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.

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

findByRoleId_First

OrgGroupRole findByRoleId_First(long roleId,
                                OrderByComparator orderByComparator)
                                throws NoSuchOrgGroupRoleException,
                                       SystemException
Finds the first org group role in the ordered set 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.

Parameters:
roleId - the role id to search with
orderByComparator - the comparator to order the set by
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

findByRoleId_Last

OrgGroupRole findByRoleId_Last(long roleId,
                               OrderByComparator orderByComparator)
                               throws NoSuchOrgGroupRoleException,
                                      SystemException
Finds the last org group role in the ordered set 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.

Parameters:
roleId - the role id to search with
orderByComparator - the comparator to order the set by
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

findByRoleId_PrevAndNext

OrgGroupRole[] findByRoleId_PrevAndNext(OrgGroupRolePK orgGroupRolePK,
                                        long roleId,
                                        OrderByComparator orderByComparator)
                                        throws NoSuchOrgGroupRoleException,
                                               SystemException
Finds the org group roles before and after the current org group role in the ordered set 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.

Parameters:
orgGroupRolePK - the primary key of the current org group role
roleId - the role id to search with
orderByComparator - the comparator to order the set by
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

findAll

List<OrgGroupRole> findAll()
                           throws SystemException
Finds all the org group roles.

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

findAll

List<OrgGroupRole> findAll(int start,
                           int end)
                           throws SystemException
Finds 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.

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

findAll

List<OrgGroupRole> findAll(int start,
                           int end,
                           OrderByComparator orderByComparator)
                           throws SystemException
Finds 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.

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

removeByGroupId

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

Parameters:
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred

removeByRoleId

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

Parameters:
roleId - the role id to search with
Throws:
SystemException - if a system exception occurred

removeAll

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

Throws:
SystemException - if a system exception occurred

countByGroupId

int countByGroupId(long groupId)
                   throws SystemException
Counts all the org group roles where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching org group roles
Throws:
SystemException - if a system exception occurred

countByRoleId

int countByRoleId(long roleId)
                  throws SystemException
Counts all the org group roles where roleId = ?.

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

countAll

int countAll()
             throws SystemException
Counts all the org group roles.

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

Liferay 6.0.5