Liferay 6.0.5

com.liferay.portal.service.persistence
Class AccountUtil

java.lang.Object
  extended by com.liferay.portal.service.persistence.AccountUtil

public class AccountUtil
extends Object

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.

Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regenerate this class.

Caching information and settings can be found in portal.properties

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

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()
          Counts all the accounts.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static Account create(long accountId)
          Creates a new account with the primary key.
static Account fetchByPrimaryKey(long accountId)
          Finds the account with the primary key or returns null if it could not be found.
static List<Account> findAll()
          Finds all the accounts.
static List<Account> findAll(int start, int end)
          Finds a range of all the accounts.
static List<Account> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the accounts.
static Account findByPrimaryKey(long accountId)
          Finds 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(Account account)
           
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)
           
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

AccountUtil

public AccountUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(Account account)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public long countWithDynamicQuery(DynamicQuery dynamicQuery)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<Account> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                          throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<Account> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                 int start,
                                                 int end)
                                          throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<Account> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                 int start,
                                                 int end,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

remove

public static Account remove(Account account)
                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.remove(com.liferay.portal.model.BaseModel)

update

public static Account update(Account account,
                             boolean merge)
                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static Account update(Account account,
                             boolean merge,
                             ServiceContext serviceContext)
                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(Account account)
Caches the account in the entity cache if it is enabled.

Parameters:
account - the account to cache

cacheResult

public static void cacheResult(List<Account> accounts)
Caches the accounts in the entity cache if it is enabled.

Parameters:
accounts - the accounts to cache

create

public static Account create(long accountId)
Creates a new account with the primary key. Does not add the account to the database.

Parameters:
accountId - the primary key for the new account
Returns:
the new account

remove

public static Account remove(long accountId)
                      throws NoSuchAccountException,
                             SystemException
Removes the account with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
accountId - the primary key of the account to remove
Returns:
the account that was removed
Throws:
NoSuchAccountException - if a account with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static Account updateImpl(Account account,
                                 boolean merge)
                          throws SystemException
Throws:
SystemException

findByPrimaryKey

public static Account findByPrimaryKey(long accountId)
                                throws NoSuchAccountException,
                                       SystemException
Finds the account with the primary key or throws a NoSuchAccountException if it could not be found.

Parameters:
accountId - the primary key of the account to find
Returns:
the account
Throws:
NoSuchAccountException - if a account with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static Account fetchByPrimaryKey(long accountId)
                                 throws SystemException
Finds the account with the primary key or returns null if it could not be found.

Parameters:
accountId - the primary key of the account to find
Returns:
the account, or null if a account with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findAll

public static List<Account> findAll()
                             throws SystemException
Finds all the accounts.

Returns:
the accounts
Throws:
SystemException - if a system exception occurred

findAll

public static List<Account> findAll(int start,
                                    int end)
                             throws SystemException
Finds a range of all the accounts.

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 accounts to return
end - the upper bound of the range of accounts to return (not inclusive)
Returns:
the range of accounts
Throws:
SystemException - if a system exception occurred

findAll

public static List<Account> findAll(int start,
                                    int end,
                                    OrderByComparator orderByComparator)
                             throws SystemException
Finds an ordered range of all the accounts.

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 accounts to return
end - the upper bound of the range of accounts to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of accounts
Throws:
SystemException - if a system exception occurred

removeAll

public static void removeAll()
                      throws SystemException
Removes all the accounts from the database.

Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Counts all the accounts.

Returns:
the number of accounts
Throws:
SystemException - if a system exception occurred

getPersistence

public static AccountPersistence getPersistence()

setPersistence

public void setPersistence(AccountPersistence persistence)

Liferay 6.0.5