Liferay 6.2-ce-ga5

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

Packages that use Account
com.liferay.portal.model This package defines the portal model interfaces, classes, utilities, wrappers, and annotated types. 
com.liferay.portal.service This package defines the portal service interfaces and classes. 
com.liferay.portal.service.permission This package defines the portal service permission interfaces and utilities. 
com.liferay.portal.service.persistence This package defines the portal service persistence interfaces, classes, and utilities. 
com.liferay.portal.theme This package defines the portal theme classes. 
 

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 Company.getAccount()
           
 Account CompanyWrapper.getAccount()
           
 Account AccountWrapper.getWrappedAccount()
          Deprecated. As of 6.1.0, replaced by AccountWrapper.getWrappedModel()
 Account AccountWrapper.getWrappedModel()
           
 Account AccountModel.toEscapedModel()
           
 Account AccountWrapper.toEscapedModel()
           
 Account AccountModel.toUnescapedModel()
           
 Account AccountWrapper.toUnescapedModel()
           
 

Methods in com.liferay.portal.model that return types with arguments of type Account
 CacheModel<Account> AccountModel.toCacheModel()
           
 CacheModel<Account> AccountWrapper.toCacheModel()
           
 

Methods in com.liferay.portal.model with parameters of type Account
 int AccountModel.compareTo(Account account)
           
 int AccountWrapper.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.service
 

Methods in com.liferay.portal.service that return Account
 Account AccountLocalService.addAccount(Account account)
          Adds the account to the database.
 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.createAccount(long accountId)
          Creates a new account with the primary key.
 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.deleteAccount(Account account)
          Deletes the account from the database.
 Account AccountLocalServiceWrapper.deleteAccount(Account account)
          Deletes the account from the database.
static Account AccountLocalServiceUtil.deleteAccount(Account account)
          Deletes the account from the database.
 Account AccountLocalService.deleteAccount(long accountId)
          Deletes the account with the primary key from the database.
 Account AccountLocalServiceWrapper.deleteAccount(long accountId)
          Deletes the account with the primary key from the database.
static Account AccountLocalServiceUtil.deleteAccount(long accountId)
          Deletes the account with the primary key from the database.
 Account AccountLocalService.fetchAccount(long accountId)
           
 Account AccountLocalServiceWrapper.fetchAccount(long accountId)
           
static Account AccountLocalServiceUtil.fetchAccount(long accountId)
           
 Account AccountLocalService.getAccount(long accountId)
          Returns the account with the primary key.
 Account AccountLocalServiceWrapper.getAccount(long accountId)
          Returns the account with the primary key.
static Account AccountLocalServiceUtil.getAccount(long accountId)
          Returns the account with the primary key.
 Account AccountLocalService.getAccount(long companyId, long accountId)
           
 Account AccountLocalServiceWrapper.getAccount(long companyId, long accountId)
           
static Account AccountLocalServiceUtil.getAccount(long companyId, long accountId)
           
 Account AccountLocalService.updateAccount(Account account)
          Updates the account in the database or adds it if it does not yet exist.
 Account AccountLocalServiceWrapper.updateAccount(Account account)
          Updates the account in the database or adds it if it does not yet exist.
static Account AccountLocalServiceUtil.updateAccount(Account account)
          Updates the account in the database or adds it if it does not yet exist.
 

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

Methods in com.liferay.portal.service with parameters of type Account
 Account AccountLocalService.addAccount(Account account)
          Adds the account to the database.
 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.deleteAccount(Account account)
          Deletes the account from the database.
 Account AccountLocalServiceWrapper.deleteAccount(Account account)
          Deletes the account from the database.
static Account AccountLocalServiceUtil.deleteAccount(Account account)
          Deletes the account from the database.
 Account AccountLocalService.updateAccount(Account account)
          Updates the account in the database or adds it if it does not yet exist.
 Account AccountLocalServiceWrapper.updateAccount(Account account)
          Updates the account in the database or adds it if it does not yet exist.
static Account AccountLocalServiceUtil.updateAccount(Account account)
          Updates the account in the database or adds it if it does not yet exist.
 

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

Methods in com.liferay.portal.service.permission with parameters of type Account
 void AccountPermission.check(PermissionChecker permissionChecker, Account account, String actionId)
           
static void AccountPermissionUtil.check(PermissionChecker permissionChecker, Account account, String actionId)
           
 boolean AccountPermission.contains(PermissionChecker permissionChecker, Account account, String actionId)
           
static boolean AccountPermissionUtil.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
 Account AccountPersistence.create(long accountId)
          Creates a new account with the primary key.
static Account AccountUtil.create(long accountId)
          Creates a new account with the primary key.
 Account AccountPersistence.fetchByPrimaryKey(long accountId)
          Returns the account with the primary key or returns null if it could not be found.
static Account AccountUtil.fetchByPrimaryKey(long accountId)
          Returns the account with the primary key or returns null if it could not be found.
 Account AccountPersistence.findByPrimaryKey(long accountId)
          Returns the account with the primary key or throws a NoSuchAccountException if it could not be found.
static Account AccountUtil.findByPrimaryKey(long accountId)
          Returns the account with the primary key or throws a NoSuchAccountException if it could not be found.
 Account AccountPersistence.remove(long accountId)
          Removes the account with the primary key from the database.
static Account AccountUtil.remove(long accountId)
          Removes the account with the primary key from the database.
static Account AccountUtil.update(Account account)
           
static Account AccountUtil.update(Account account, ServiceContext serviceContext)
           
 Account AccountPersistence.updateImpl(Account account)
           
static Account AccountUtil.updateImpl(Account account)
           
 

Methods in com.liferay.portal.service.persistence that return types with arguments of type Account
 List<Account> AccountPersistence.findAll()
          Returns all the accounts.
static List<Account> AccountUtil.findAll()
          Returns all the accounts.
 List<Account> AccountPersistence.findAll(int start, int end)
          Returns a range of all the accounts.
static List<Account> AccountUtil.findAll(int start, int end)
          Returns a range of all the accounts.
 List<Account> AccountPersistence.findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the accounts.
static List<Account> AccountUtil.findAll(int start, int end, OrderByComparator orderByComparator)
          Returns 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
 void AccountPersistence.cacheResult(Account account)
          Caches the account in the entity cache if it is enabled.
static void AccountUtil.cacheResult(Account account)
          Caches the account in the entity cache if it is enabled.
static void AccountUtil.clearCache(Account account)
           
static Account AccountUtil.update(Account account)
           
static Account AccountUtil.update(Account account, ServiceContext serviceContext)
           
 Account AccountPersistence.updateImpl(Account account)
           
static Account AccountUtil.updateImpl(Account account)
           
 

Method parameters in com.liferay.portal.service.persistence with type arguments of type Account
 void AccountPersistence.cacheResult(List<Account> accounts)
          Caches the accounts in the entity cache if it is enabled.
static void AccountUtil.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.2-ce-ga5