|
Liferay 6.1.0-ce-rc1 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ResourceCodePersistence
The persistence interface for the resource code service.
Caching information and settings can be found in portal.properties
ResourceCodePersistenceImpl,
ResourceCodeUtil| Method Summary | |
|---|---|
void |
cacheResult(List<ResourceCode> resourceCodes)
Caches the resource codes in the entity cache if it is enabled. |
void |
cacheResult(ResourceCode resourceCode)
Caches the resource code in the entity cache if it is enabled. |
int |
countAll()
Returns the number of resource codes. |
int |
countByC_N_S(long companyId,
String name,
int scope)
Returns the number of resource codes where companyId = ? and name = ? and scope = ?. |
int |
countByCompanyId(long companyId)
Returns the number of resource codes where companyId = ?. |
int |
countByName(String name)
Returns the number of resource codes where name = ?. |
ResourceCode |
create(long codeId)
Creates a new resource code with the primary key. |
ResourceCode |
fetchByC_N_S(long companyId,
String name,
int scope)
Returns the resource code where companyId = ? and name = ? and scope = ? or returns null if it could not be found. |
ResourceCode |
fetchByC_N_S(long companyId,
String name,
int scope,
boolean retrieveFromCache)
Returns the resource code where companyId = ? and name = ? and scope = ? or returns null if it could not be found, optionally using the finder cache. |
ResourceCode |
fetchByPrimaryKey(long codeId)
Returns the resource code with the primary key or returns null if it could not be found. |
List<ResourceCode> |
findAll()
Returns all the resource codes. |
List<ResourceCode> |
findAll(int start,
int end)
Returns a range of all the resource codes. |
List<ResourceCode> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource codes. |
ResourceCode |
findByC_N_S(long companyId,
String name,
int scope)
Returns the resource code where companyId = ? and name = ? and scope = ? or throws a NoSuchResourceCodeException if it could not be found. |
ResourceCode |
findByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
Returns the first resource code in the ordered set where companyId = ?. |
ResourceCode |
findByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
Returns the last resource code in the ordered set where companyId = ?. |
ResourceCode[] |
findByCompanyId_PrevAndNext(long codeId,
long companyId,
OrderByComparator orderByComparator)
Returns the resource codes before and after the current resource code in the ordered set where companyId = ?. |
List<ResourceCode> |
findByCompanyId(long companyId)
Returns all the resource codes where companyId = ?. |
List<ResourceCode> |
findByCompanyId(long companyId,
int start,
int end)
Returns a range of all the resource codes where companyId = ?. |
List<ResourceCode> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource codes where companyId = ?. |
ResourceCode |
findByName_First(String name,
OrderByComparator orderByComparator)
Returns the first resource code in the ordered set where name = ?. |
ResourceCode |
findByName_Last(String name,
OrderByComparator orderByComparator)
Returns the last resource code in the ordered set where name = ?. |
ResourceCode[] |
findByName_PrevAndNext(long codeId,
String name,
OrderByComparator orderByComparator)
Returns the resource codes before and after the current resource code in the ordered set where name = ?. |
List<ResourceCode> |
findByName(String name)
Returns all the resource codes where name = ?. |
List<ResourceCode> |
findByName(String name,
int start,
int end)
Returns a range of all the resource codes where name = ?. |
List<ResourceCode> |
findByName(String name,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource codes where name = ?. |
ResourceCode |
findByPrimaryKey(long codeId)
Returns the resource code with the primary key or throws a NoSuchResourceCodeException if it could not be found. |
ResourceCode |
remove(long codeId)
Removes the resource code with the primary key from the database. |
void |
removeAll()
Removes all the resource codes from the database. |
void |
removeByC_N_S(long companyId,
String name,
int scope)
Removes the resource code where companyId = ? and name = ? and scope = ? from the database. |
void |
removeByCompanyId(long companyId)
Removes all the resource codes where companyId = ? from the database. |
void |
removeByName(String name)
Removes all the resource codes where name = ? from the database. |
ResourceCode |
updateImpl(ResourceCode resourceCode,
boolean merge)
|
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update |
| Method Detail |
|---|
void cacheResult(ResourceCode resourceCode)
resourceCode - the resource codevoid cacheResult(List<ResourceCode> resourceCodes)
resourceCodes - the resource codesResourceCode create(long codeId)
codeId - the primary key for the new resource code
ResourceCode remove(long codeId)
throws NoSuchResourceCodeException,
SystemException
codeId - the primary key of the resource code
NoSuchResourceCodeException - if a resource code with the primary key could not be found
SystemException - if a system exception occurred
ResourceCode updateImpl(ResourceCode resourceCode,
boolean merge)
throws SystemException
SystemException
ResourceCode findByPrimaryKey(long codeId)
throws NoSuchResourceCodeException,
SystemException
NoSuchResourceCodeException if it could not be found.
codeId - the primary key of the resource code
NoSuchResourceCodeException - if a resource code with the primary key could not be found
SystemException - if a system exception occurred
ResourceCode fetchByPrimaryKey(long codeId)
throws SystemException
null if it could not be found.
codeId - the primary key of the resource code
null if a resource code with the primary key could not be found
SystemException - if a system exception occurred
List<ResourceCode> findByCompanyId(long companyId)
throws SystemException
companyId - the company ID
SystemException - if a system exception occurred
List<ResourceCode> 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.
companyId - the company IDstart - the lower bound of the range of resource codesend - the upper bound of the range of resource codes (not inclusive)
SystemException - if a system exception occurred
List<ResourceCode> 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.
companyId - the company IDstart - the lower bound of the range of resource codesend - the upper bound of the range of resource codes (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
ResourceCode findByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
throws NoSuchResourceCodeException,
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.
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchResourceCodeException - if a matching resource code could not be found
SystemException - if a system exception occurred
ResourceCode findByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
throws NoSuchResourceCodeException,
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.
companyId - the company IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchResourceCodeException - if a matching resource code could not be found
SystemException - if a system exception occurred
ResourceCode[] findByCompanyId_PrevAndNext(long codeId,
long companyId,
OrderByComparator orderByComparator)
throws NoSuchResourceCodeException,
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.
codeId - the primary key of the current resource codecompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchResourceCodeException - if a resource code with the primary key could not be found
SystemException - if a system exception occurred
List<ResourceCode> findByName(String name)
throws SystemException
name - the name
SystemException - if a system exception occurred
List<ResourceCode> findByName(String name,
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.
name - the namestart - the lower bound of the range of resource codesend - the upper bound of the range of resource codes (not inclusive)
SystemException - if a system exception occurred
List<ResourceCode> findByName(String name,
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.
name - the namestart - the lower bound of the range of resource codesend - the upper bound of the range of resource codes (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
ResourceCode findByName_First(String name,
OrderByComparator orderByComparator)
throws NoSuchResourceCodeException,
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.
name - the nameorderByComparator - the comparator to order the set by (optionally null)
NoSuchResourceCodeException - if a matching resource code could not be found
SystemException - if a system exception occurred
ResourceCode findByName_Last(String name,
OrderByComparator orderByComparator)
throws NoSuchResourceCodeException,
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.
name - the nameorderByComparator - the comparator to order the set by (optionally null)
NoSuchResourceCodeException - if a matching resource code could not be found
SystemException - if a system exception occurred
ResourceCode[] findByName_PrevAndNext(long codeId,
String name,
OrderByComparator orderByComparator)
throws NoSuchResourceCodeException,
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.
codeId - the primary key of the current resource codename - the nameorderByComparator - the comparator to order the set by (optionally null)
NoSuchResourceCodeException - if a resource code with the primary key could not be found
SystemException - if a system exception occurred
ResourceCode findByC_N_S(long companyId,
String name,
int scope)
throws NoSuchResourceCodeException,
SystemException
NoSuchResourceCodeException if it could not be found.
companyId - the company IDname - the namescope - the scope
NoSuchResourceCodeException - if a matching resource code could not be found
SystemException - if a system exception occurred
ResourceCode fetchByC_N_S(long companyId,
String name,
int scope)
throws SystemException
null if it could not be found. Uses the finder cache.
companyId - the company IDname - the namescope - the scope
null if a matching resource code could not be found
SystemException - if a system exception occurred
ResourceCode fetchByC_N_S(long companyId,
String name,
int scope,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
companyId - the company IDname - the namescope - the scoperetrieveFromCache - whether to use the finder cache
null if a matching resource code could not be found
SystemException - if a system exception occurred
List<ResourceCode> findAll()
throws SystemException
SystemException - if a system exception occurred
List<ResourceCode> 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.
start - the lower bound of the range of resource codesend - the upper bound of the range of resource codes (not inclusive)
SystemException - if a system exception occurred
List<ResourceCode> 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.
start - the lower bound of the range of resource codesend - the upper bound of the range of resource codes (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
void removeByCompanyId(long companyId)
throws SystemException
companyId - the company ID
SystemException - if a system exception occurred
void removeByName(String name)
throws SystemException
name - the name
SystemException - if a system exception occurred
void removeByC_N_S(long companyId,
String name,
int scope)
throws NoSuchResourceCodeException,
SystemException
companyId - the company IDname - the namescope - the scope
SystemException - if a system exception occurred
NoSuchResourceCodeException
void removeAll()
throws SystemException
SystemException - if a system exception occurred
int countByCompanyId(long companyId)
throws SystemException
companyId - the company ID
SystemException - if a system exception occurred
int countByName(String name)
throws SystemException
name - the name
SystemException - if a system exception occurred
int countByC_N_S(long companyId,
String name,
int scope)
throws SystemException
companyId - the company IDname - the namescope - the scope
SystemException - if a system exception occurred
int countAll()
throws SystemException
SystemException - if a system exception occurred
|
Liferay 6.1.0-ce-rc1 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||