Liferay 6.0.3

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()
           
 

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)
           
 

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

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)
           
static Account AccountLocalServiceUtil.addAccount(Account account)
           
 Account AccountLocalService.addAccount(Account account)
           
 Account AccountLocalServiceWrapper.createAccount(long accountId)
           
static Account AccountLocalServiceUtil.createAccount(long accountId)
           
 Account AccountLocalService.createAccount(long accountId)
           
 Account AccountLocalServiceWrapper.getAccount(long accountId)
           
static Account AccountLocalServiceUtil.getAccount(long accountId)
           
 Account AccountLocalService.getAccount(long accountId)
           
 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)
           
static Account AccountLocalServiceUtil.updateAccount(Account account)
           
 Account AccountLocalService.updateAccount(Account account)
           
 Account AccountLocalServiceWrapper.updateAccount(Account account, boolean merge)
           
static Account AccountLocalServiceUtil.updateAccount(Account account, boolean merge)
           
 Account AccountLocalService.updateAccount(Account account, boolean merge)
           
 

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

Methods in com.liferay.portal.service with parameters of type Account
 Account AccountLocalServiceWrapper.addAccount(Account account)
           
static Account AccountLocalServiceUtil.addAccount(Account account)
           
 Account AccountLocalService.addAccount(Account account)
           
 void AccountLocalServiceWrapper.deleteAccount(Account account)
           
static void AccountLocalServiceUtil.deleteAccount(Account account)
           
 void AccountLocalService.deleteAccount(Account account)
           
 Account AccountLocalServiceWrapper.updateAccount(Account account)
           
static Account AccountLocalServiceUtil.updateAccount(Account account)
           
 Account AccountLocalService.updateAccount(Account account)
           
 Account AccountLocalServiceWrapper.updateAccount(Account account, boolean merge)
           
static Account AccountLocalServiceUtil.updateAccount(Account account, boolean merge)
           
 Account AccountLocalService.updateAccount(Account account, boolean merge)
           
 

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

Methods in com.liferay.portal.service.base that return Account
 Account AccountLocalServiceBaseImpl.addAccount(Account account)
           
 Account AccountLocalServiceBaseImpl.createAccount(long accountId)
           
 Account AccountLocalServiceBaseImpl.getAccount(long accountId)
           
 Account AccountLocalServiceBaseImpl.updateAccount(Account account)
           
 Account AccountLocalServiceBaseImpl.updateAccount(Account account, boolean merge)
           
 

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

Methods in com.liferay.portal.service.base with parameters of type Account
 Account AccountLocalServiceBaseImpl.addAccount(Account account)
           
 void AccountLocalServiceBaseImpl.deleteAccount(Account account)
           
 Account AccountLocalServiceBaseImpl.updateAccount(Account account)
           
 Account AccountLocalServiceBaseImpl.updateAccount(Account account, boolean merge)
           
 

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)
           
 Account AccountPersistence.create(long accountId)
           
 Account AccountPersistenceImpl.create(long accountId)
           
static Account AccountUtil.fetchByPrimaryKey(long accountId)
           
 Account AccountPersistence.fetchByPrimaryKey(long accountId)
           
 Account AccountPersistenceImpl.fetchByPrimaryKey(long accountId)
           
 Account AccountPersistenceImpl.fetchByPrimaryKey(Serializable primaryKey)
           
static Account AccountUtil.findByPrimaryKey(long accountId)
           
 Account AccountPersistence.findByPrimaryKey(long accountId)
           
 Account AccountPersistenceImpl.findByPrimaryKey(long accountId)
           
 Account AccountPersistenceImpl.findByPrimaryKey(Serializable primaryKey)
           
static Account AccountUtil.remove(Account account)
           
static Account AccountUtil.remove(long accountId)
           
 Account AccountPersistence.remove(long accountId)
           
 Account AccountPersistenceImpl.remove(long accountId)
           
 Account AccountPersistenceImpl.remove(Serializable primaryKey)
           
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()
           
 List<Account> AccountPersistence.findAll()
           
 List<Account> AccountPersistenceImpl.findAll()
           
static List<Account> AccountUtil.findAll(int start, int end)
           
 List<Account> AccountPersistence.findAll(int start, int end)
           
 List<Account> AccountPersistenceImpl.findAll(int start, int end)
           
static List<Account> AccountUtil.findAll(int start, int end, OrderByComparator orderByComparator)
           
 List<Account> AccountPersistence.findAll(int start, int end, OrderByComparator orderByComparator)
           
 List<Account> AccountPersistenceImpl.findAll(int start, int end, OrderByComparator orderByComparator)
           
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)
           
 void AccountPersistence.cacheResult(Account account)
           
 void AccountPersistenceImpl.cacheResult(Account account)
           
static void AccountUtil.clearCache(Account account)
           
 void AccountPersistenceImpl.clearCache(Account 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)
           
 void AccountPersistence.cacheResult(List<Account> accounts)
           
 void AccountPersistenceImpl.cacheResult(List<Account> accounts)
           
 

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.3