|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portal.service.persistence.AccountUtil
public class AccountUtil
The persistence utility for the account service. This utility wraps AccountPersistenceImpl
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
AccountPersistence
,
AccountPersistenceImpl
Constructor Summary | |
---|---|
AccountUtil()
|
Method Summary | |
---|---|
static void |
cacheResult(Account account)
Caches the account in the entity cache if it is enabled. |
static void |
cacheResult(List<Account> accounts)
Caches the accounts in the entity cache if it is enabled. |
static void |
clearCache()
|
static void |
clearCache(Account account)
|
static int |
countAll()
Returns the number of accounts. |
long |
countWithDynamicQuery(DynamicQuery dynamicQuery)
|
static Account |
create(long accountId)
Creates a new account with the primary key. |
static Account |
fetchByPrimaryKey(long accountId)
Returns the account with the primary key or returns null if it could not be found. |
static List<Account> |
findAll()
Returns all the accounts. |
static List<Account> |
findAll(int start,
int end)
Returns a range of all the accounts. |
static List<Account> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the accounts. |
static Account |
findByPrimaryKey(long accountId)
Returns the account with the primary key or throws a NoSuchAccountException if it could not be found. |
static List<Account> |
findWithDynamicQuery(DynamicQuery dynamicQuery)
|
static List<Account> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
|
static List<Account> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
|
static AccountPersistence |
getPersistence()
|
static Account |
remove(long accountId)
Removes the account with the primary key from the database. |
static void |
removeAll()
Removes all the accounts from the database. |
void |
setPersistence(AccountPersistence persistence)
Deprecated. |
static Account |
update(Account account,
boolean merge)
|
static Account |
update(Account account,
boolean merge,
ServiceContext serviceContext)
|
static Account |
updateImpl(Account account,
boolean merge)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public AccountUtil()
Method Detail |
---|
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(Account account)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)
public long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.countWithDynamicQuery(DynamicQuery)
public static List<Account> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<Account> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<Account> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static Account update(Account account, boolean merge) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)
public static Account update(Account account, boolean merge, ServiceContext serviceContext) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)
public static void cacheResult(Account account)
account
- the accountpublic static void cacheResult(List<Account> accounts)
accounts
- the accountspublic static Account create(long accountId)
accountId
- the primary key for the new account
public static Account remove(long accountId) throws NoSuchAccountException, SystemException
accountId
- the primary key of the account
NoSuchAccountException
- if a account with the primary key could not be found
SystemException
- if a system exception occurredpublic static Account updateImpl(Account account, boolean merge) throws SystemException
SystemException
public static Account findByPrimaryKey(long accountId) throws NoSuchAccountException, SystemException
NoSuchAccountException
if it could not be found.
accountId
- the primary key of the account
NoSuchAccountException
- if a account with the primary key could not be found
SystemException
- if a system exception occurredpublic static Account fetchByPrimaryKey(long accountId) throws SystemException
null
if it could not be found.
accountId
- the primary key of the account
null
if a account with the primary key could not be found
SystemException
- if a system exception occurredpublic static List<Account> findAll() throws SystemException
SystemException
- if a system exception occurredpublic static 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 accountsend
- the upper bound of the range of accounts (not inclusive)
SystemException
- if a system exception occurredpublic static 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 accountsend
- the upper bound of the range of accounts (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredpublic static void removeAll() throws SystemException
SystemException
- if a system exception occurredpublic static int countAll() throws SystemException
SystemException
- if a system exception occurredpublic static AccountPersistence getPersistence()
public void setPersistence(AccountPersistence persistence)
|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |