Liferay 6.0.5

Uses of Interface
com.liferay.portal.model.Account

Packages that use Account
com.liferay.portal.model   
com.liferay.portal.model.impl   
com.liferay.portal.service   
com.liferay.portal.service.base   
com.liferay.portal.service.http   
com.liferay.portal.service.impl   
com.liferay.portal.service.permission   
com.liferay.portal.service.persistence   
com.liferay.portal.theme   
 

Uses of Account in com.liferay.portal.model
 

Classes in com.liferay.portal.model that implement Account
 class AccountWrapper
           This class is a wrapper for Account.
 

Methods in com.liferay.portal.model that return Account
 Account CompanyWrapper.getAccount()
           
 Account Company.getAccount()
           
 Account AccountWrapper.getWrappedAccount()
           
 Account AccountWrapper.toEscapedModel()
           
 Account AccountModel.toEscapedModel()
          Gets a copy of this account as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.
 

Methods in com.liferay.portal.model with parameters of type Account
 int AccountWrapper.compareTo(Account account)
           
 int AccountModel.compareTo(Account account)
           
static AccountSoap AccountSoap.toSoapModel(Account model)
           
static AccountSoap[] AccountSoap.toSoapModels(Account[] models)
           
static AccountSoap[][] AccountSoap.toSoapModels(Account[][] models)
           
 

Method parameters in com.liferay.portal.model with type arguments of type Account
static AccountSoap[] AccountSoap.toSoapModels(List<Account> models)
           
 

Constructors in com.liferay.portal.model with parameters of type Account
AccountWrapper(Account account)
           
 

Uses of Account in com.liferay.portal.model.impl
 

Classes in com.liferay.portal.model.impl that implement Account
 class AccountImpl
           
 

Methods in com.liferay.portal.model.impl that return Account
 Account CompanyImpl.getAccount()
           
 Account AccountModelImpl.toEscapedModel()
           
static Account AccountModelImpl.toModel(AccountSoap soapModel)
          Converts the soap model instance into a normal model instance.
 

Methods in com.liferay.portal.model.impl that return types with arguments of type Account
static List<Account> AccountModelImpl.toModels(AccountSoap[] soapModels)
          Converts the soap model instances into normal model instances.
 

Methods in com.liferay.portal.model.impl with parameters of type Account
 int AccountModelImpl.compareTo(Account account)
           
 

Uses of Account in com.liferay.portal.service
 

Methods in com.liferay.portal.service that return Account
 Account AccountLocalServiceWrapper.addAccount(Account account)
          Adds the account to the database.
static Account AccountLocalServiceUtil.addAccount(Account account)
          Adds the account to the database.
 Account AccountLocalService.addAccount(Account account)
          Adds the account to the database.
 Account AccountLocalServiceWrapper.createAccount(long accountId)
          Creates a new account with the primary key.
static Account AccountLocalServiceUtil.createAccount(long accountId)
          Creates a new account with the primary key.
 Account AccountLocalService.createAccount(long accountId)
          Creates a new account with the primary key.
 Account AccountLocalServiceWrapper.getAccount(long accountId)
          Gets the account with the primary key.
static Account AccountLocalServiceUtil.getAccount(long accountId)
          Gets the account with the primary key.
 Account AccountLocalService.getAccount(long accountId)
          Gets the account with the primary key.
 Account AccountLocalServiceWrapper.getAccount(long companyId, long accountId)
           
static Account AccountLocalServiceUtil.getAccount(long companyId, long accountId)
           
 Account AccountLocalService.getAccount(long companyId, long accountId)
           
 Account AccountLocalServiceWrapper.updateAccount(Account account)
          Updates the account in the database.
static Account AccountLocalServiceUtil.updateAccount(Account account)
          Updates the account in the database.
 Account AccountLocalService.updateAccount(Account account)
          Updates the account in the database.
 Account AccountLocalServiceWrapper.updateAccount(Account account, boolean merge)
          Updates the account in the database.
static Account AccountLocalServiceUtil.updateAccount(Account account, boolean merge)
          Updates the account in the database.
 Account AccountLocalService.updateAccount(Account account, boolean merge)
          Updates the account in the database.
 

Methods in com.liferay.portal.service that return types with arguments of type Account
 List<Account> AccountLocalServiceWrapper.getAccounts(int start, int end)
          Gets a range of all the accounts.
static List<Account> AccountLocalServiceUtil.getAccounts(int start, int end)
          Gets a range of all the accounts.
 List<Account> AccountLocalService.getAccounts(int start, int end)
          Gets a range of all the accounts.
 

Methods in com.liferay.portal.service with parameters of type Account
 Account AccountLocalServiceWrapper.addAccount(Account account)
          Adds the account to the database.
static Account AccountLocalServiceUtil.addAccount(Account account)
          Adds the account to the database.
 Account AccountLocalService.addAccount(Account account)
          Adds the account to the database.
 void AccountLocalServiceWrapper.deleteAccount(Account account)
          Deletes the account from the database.
static void AccountLocalServiceUtil.deleteAccount(Account account)
          Deletes the account from the database.
 void AccountLocalService.deleteAccount(Account account)
          Deletes the account from the database.
 Account AccountLocalServiceWrapper.updateAccount(Account account)
          Updates the account in the database.
static Account AccountLocalServiceUtil.updateAccount(Account account)
          Updates the account in the database.
 Account AccountLocalService.updateAccount(Account account)
          Updates the account in the database.
 Account AccountLocalServiceWrapper.updateAccount(Account account, boolean merge)
          Updates the account in the database.
static Account AccountLocalServiceUtil.updateAccount(Account account, boolean merge)
          Updates the account in the database.
 Account AccountLocalService.updateAccount(Account account, boolean merge)
          Updates the account in the database.
 

Uses of Account in com.liferay.portal.service.base
 

Methods in com.liferay.portal.service.base that return Account
 Account AccountLocalServiceBaseImpl.addAccount(Account account)
          Adds the account to the database.
 Account AccountLocalServiceBaseImpl.createAccount(long accountId)
          Creates a new account with the primary key.
 Account AccountLocalServiceBaseImpl.getAccount(long accountId)
          Gets the account with the primary key.
 Account AccountLocalServiceBaseImpl.updateAccount(Account account)
          Updates the account in the database.
 Account AccountLocalServiceBaseImpl.updateAccount(Account account, boolean merge)
          Updates the account in the database.
 

Methods in com.liferay.portal.service.base that return types with arguments of type Account
 List<Account> AccountLocalServiceBaseImpl.getAccounts(int start, int end)
          Gets a range of all the accounts.
 

Methods in com.liferay.portal.service.base with parameters of type Account
 Account AccountLocalServiceBaseImpl.addAccount(Account account)
          Adds the account to the database.
 void AccountLocalServiceBaseImpl.deleteAccount(Account account)
          Deletes the account from the database.
 Account AccountLocalServiceBaseImpl.updateAccount(Account account)
          Updates the account in the database.
 Account AccountLocalServiceBaseImpl.updateAccount(Account account, boolean merge)
          Updates the account in the database.
 

Uses of Account in com.liferay.portal.service.http
 

Methods in com.liferay.portal.service.http with parameters of type Account
static JSONArray AccountJSONSerializer.toJSONArray(Account[] models)
           
static JSONArray AccountJSONSerializer.toJSONArray(Account[][] models)
           
static JSONObject AccountJSONSerializer.toJSONObject(Account model)
           
 

Method parameters in com.liferay.portal.service.http with type arguments of type Account
static JSONArray AccountJSONSerializer.toJSONArray(List<Account> models)
           
 

Uses of Account in com.liferay.portal.service.impl
 

Methods in com.liferay.portal.service.impl that return Account
 Account AccountLocalServiceImpl.getAccount(long accountId)
           
 Account AccountLocalServiceImpl.getAccount(long companyId, long accountId)
           
 

Uses of Account in com.liferay.portal.service.permission
 

Methods in com.liferay.portal.service.permission with parameters of type Account
static void AccountPermissionUtil.check(PermissionChecker permissionChecker, Account account, String actionId)
           
 void AccountPermission.check(PermissionChecker permissionChecker, Account account, String actionId)
           
 void AccountPermissionImpl.check(PermissionChecker permissionChecker, Account account, String actionId)
           
static boolean AccountPermissionUtil.contains(PermissionChecker permissionChecker, Account account, String actionId)
           
 boolean AccountPermission.contains(PermissionChecker permissionChecker, Account account, String actionId)
           
 boolean AccountPermissionImpl.contains(PermissionChecker permissionChecker, Account account, String actionId)
           
 

Uses of Account in com.liferay.portal.service.persistence
 

Methods in com.liferay.portal.service.persistence that return Account
static Account AccountUtil.create(long accountId)
          Creates a new account with the primary key.
 Account AccountPersistence.create(long accountId)
          Creates a new account with the primary key.
 Account AccountPersistenceImpl.create(long accountId)
          Creates a new account with the primary key.
static Account AccountUtil.fetchByPrimaryKey(long accountId)
          Finds the account with the primary key or returns null if it could not be found.
 Account AccountPersistence.fetchByPrimaryKey(long accountId)
          Finds the account with the primary key or returns null if it could not be found.
 Account AccountPersistenceImpl.fetchByPrimaryKey(long accountId)
          Finds the account with the primary key or returns null if it could not be found.
 Account AccountPersistenceImpl.fetchByPrimaryKey(Serializable primaryKey)
          Finds the account with the primary key or returns null if it could not be found.
static Account AccountUtil.findByPrimaryKey(long accountId)
          Finds the account with the primary key or throws a NoSuchAccountException if it could not be found.
 Account AccountPersistence.findByPrimaryKey(long accountId)
          Finds the account with the primary key or throws a NoSuchAccountException if it could not be found.
 Account AccountPersistenceImpl.findByPrimaryKey(long accountId)
          Finds the account with the primary key or throws a NoSuchAccountException if it could not be found.
 Account AccountPersistenceImpl.findByPrimaryKey(Serializable primaryKey)
          Finds the account with the primary key or throws a NoSuchModelException if it could not be found.
static Account AccountUtil.remove(Account account)
           
static Account AccountUtil.remove(long accountId)
          Removes the account with the primary key from the database.
 Account AccountPersistence.remove(long accountId)
          Removes the account with the primary key from the database.
 Account AccountPersistenceImpl.remove(long accountId)
          Removes the account with the primary key from the database.
 Account AccountPersistenceImpl.remove(Serializable primaryKey)
          Removes the account with the primary key from the database.
protected  Account AccountPersistenceImpl.removeImpl(Account account)
           
protected  Account AccountPersistenceImpl.toUnwrappedModel(Account account)
           
static Account AccountUtil.update(Account account, boolean merge)
           
static Account AccountUtil.update(Account account, boolean merge, ServiceContext serviceContext)
           
static Account AccountUtil.updateImpl(Account account, boolean merge)
           
 Account AccountPersistence.updateImpl(Account account, boolean merge)
           
 Account AccountPersistenceImpl.updateImpl(Account account, boolean merge)
           
 

Methods in com.liferay.portal.service.persistence that return types with arguments of type Account
static List<Account> AccountUtil.findAll()
          Finds all the accounts.
 List<Account> AccountPersistence.findAll()
          Finds all the accounts.
 List<Account> AccountPersistenceImpl.findAll()
          Finds all the accounts.
static List<Account> AccountUtil.findAll(int start, int end)
          Finds a range of all the accounts.
 List<Account> AccountPersistence.findAll(int start, int end)
          Finds a range of all the accounts.
 List<Account> AccountPersistenceImpl.findAll(int start, int end)
          Finds a range of all the accounts.
static List<Account> AccountUtil.findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the accounts.
 List<Account> AccountPersistence.findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the accounts.
 List<Account> AccountPersistenceImpl.findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the accounts.
static List<Account> AccountUtil.findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<Account> AccountUtil.findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<Account> AccountUtil.findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
 

Methods in com.liferay.portal.service.persistence with parameters of type Account
static void AccountUtil.cacheResult(Account account)
          Caches the account in the entity cache if it is enabled.
 void AccountPersistence.cacheResult(Account account)
          Caches the account in the entity cache if it is enabled.
 void AccountPersistenceImpl.cacheResult(Account account)
          Caches the account in the entity cache if it is enabled.
static void AccountUtil.clearCache(Account account)
           
 void AccountPersistenceImpl.clearCache(Account account)
          Clears the cache for the account.
static Account AccountUtil.remove(Account account)
           
protected  Account AccountPersistenceImpl.removeImpl(Account account)
           
protected  Account AccountPersistenceImpl.toUnwrappedModel(Account account)
           
static Account AccountUtil.update(Account account, boolean merge)
           
static Account AccountUtil.update(Account account, boolean merge, ServiceContext serviceContext)
           
static Account AccountUtil.updateImpl(Account account, boolean merge)
           
 Account AccountPersistence.updateImpl(Account account, boolean merge)
           
 Account AccountPersistenceImpl.updateImpl(Account account, boolean merge)
           
 

Method parameters in com.liferay.portal.service.persistence with type arguments of type Account
static void AccountUtil.cacheResult(List<Account> accounts)
          Caches the accounts in the entity cache if it is enabled.
 void AccountPersistence.cacheResult(List<Account> accounts)
          Caches the accounts in the entity cache if it is enabled.
 void AccountPersistenceImpl.cacheResult(List<Account> accounts)
          Caches the accounts in the entity cache if it is enabled.
 

Uses of Account in com.liferay.portal.theme
 

Methods in com.liferay.portal.theme that return Account
 Account ThemeDisplay.getAccount()
           
 

Methods in com.liferay.portal.theme with parameters of type Account
 void ThemeDisplay.setAccount(Account account)
           
 


Liferay 6.0.5