|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface AccountPersistence
The persistence interface for the account service.
Never modify this interface directly. Modify service.xml and rerun ServiceBuilder to regnerate this interface.
AccountPersistenceImpl,
AccountUtil| Method Summary | |
|---|---|
void |
cacheResult(Account account)
Caches the account in the entity cache if it is enabled. |
void |
cacheResult(List<Account> accounts)
Caches the accounts in the entity cache if it is enabled. |
int |
countAll()
Counts all the accounts. |
Account |
create(long accountId)
Creates a new account with the primary key. |
Account |
fetchByPrimaryKey(long accountId)
Finds the account with the primary key or returns null if it could not be found. |
List<Account> |
findAll()
Finds all the accounts. |
List<Account> |
findAll(int start,
int end)
Finds a range of all the accounts. |
List<Account> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the accounts. |
Account |
findByPrimaryKey(long accountId)
Finds the account with the primary key or throws a NoSuchAccountException if it could not be found. |
Account |
remove(long accountId)
Removes the account with the primary key from the database. |
void |
removeAll()
Removes all the accounts from the database. |
Account |
updateImpl(Account account,
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 |
|---|
void cacheResult(Account account)
account - the account to cachevoid cacheResult(List<Account> accounts)
accounts - the accounts to cacheAccount create(long accountId)
accountId - the primary key for the new account
Account remove(long accountId)
throws NoSuchAccountException,
SystemException
accountId - the primary key of the account to remove
NoSuchAccountException - if a account with the primary key could not be found
SystemException - if a system exception occurred
Account updateImpl(Account account,
boolean merge)
throws SystemException
SystemException
Account findByPrimaryKey(long accountId)
throws NoSuchAccountException,
SystemException
NoSuchAccountException if it could not be found.
accountId - the primary key of the account to find
NoSuchAccountException - if a account with the primary key could not be found
SystemException - if a system exception occurred
Account fetchByPrimaryKey(long accountId)
throws SystemException
null if it could not be found.
accountId - the primary key of the account to find
null if a account with the primary key could not be found
SystemException - if a system exception occurred
List<Account> findAll()
throws SystemException
SystemException - if a system exception occurred
List<Account> 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 accounts to returnend - the upper bound of the range of accounts to return (not inclusive)
SystemException - if a system exception occurred
List<Account> 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 accounts to returnend - the upper bound of the range of accounts to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
void removeAll()
throws SystemException
SystemException - if a system exception occurred
int countAll()
throws SystemException
SystemException - if a system exception occurred
|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||