@ProviderType public interface AccountPersistence extends BasePersistence<Account>
Caching information and settings can be found in portal.properties
AccountPersistenceImpl
,
AccountUtil
Modifier and Type | Method and Description |
---|---|
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()
Returns the number of accounts.
|
Account |
create(long accountId)
Creates a new account with the primary key.
|
Account |
fetchByPrimaryKey(long accountId)
Returns the account with the primary key or returns
null if it could not be found. |
Map<Serializable,Account> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
List<Account> |
findAll()
Returns all the accounts.
|
List<Account> |
findAll(int start,
int end)
Returns a range of all the accounts.
|
List<Account> |
findAll(int start,
int end,
OrderByComparator<Account> orderByComparator)
Returns an ordered range of all the accounts.
|
List<Account> |
findAll(int start,
int end,
OrderByComparator<Account> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the accounts.
|
Account |
findByPrimaryKey(long accountId)
Returns the account with the primary key or throws a
NoSuchAccountException if it could not be found. |
Set<String> |
getBadColumnNames() |
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) |
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update
void cacheResult(Account account)
account
- the accountvoid cacheResult(List<Account> accounts)
accounts
- the accountsAccount create(long accountId)
accountId
- the primary key for the new accountAccount remove(long accountId) throws NoSuchAccountException
accountId
- the primary key of the accountNoSuchAccountException
- if a account with the primary key could not be foundAccount findByPrimaryKey(long accountId) throws NoSuchAccountException
NoSuchAccountException
if it could not be found.accountId
- the primary key of the accountNoSuchAccountException
- if a account with the primary key could not be foundAccount fetchByPrimaryKey(long accountId)
null
if it could not be found.accountId
- the primary key of the accountnull
if a account with the primary key could not be foundMap<Serializable,Account> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
fetchByPrimaryKeys
in interface BasePersistence<Account>
List<Account> findAll()
List<Account> findAll(int start, int end)
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 AccountModelImpl
. 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 accountsend
- the upper bound of the range of accounts (not inclusive)List<Account> findAll(int start, int end, OrderByComparator<Account> orderByComparator)
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 AccountModelImpl
. 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 accountsend
- the upper bound of the range of accounts (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)List<Account> findAll(int start, int end, OrderByComparator<Account> orderByComparator, boolean retrieveFromCache)
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 AccountModelImpl
. 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 accountsend
- the upper bound of the range of accounts (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachevoid removeAll()
int countAll()
Set<String> getBadColumnNames()
getBadColumnNames
in interface BasePersistence<Account>