Liferay 7.0-ce-a2

com.liferay.portal.service.base
Class AccountServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.service.BaseServiceImpl
      extended by com.liferay.portal.service.base.AccountServiceBaseImpl
All Implemented Interfaces:
IdentifiableBean, AccountService, BaseService
Direct Known Subclasses:
AccountServiceImpl

public abstract class AccountServiceBaseImpl
extends BaseServiceImpl
implements AccountService, IdentifiableBean

Provides the base implementation for the account remote service.

This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in AccountServiceImpl.

See Also:
AccountServiceImpl, AccountServiceUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Field Summary
protected  AccountLocalService accountLocalService
           
protected  AccountPersistence accountPersistence
           
protected  AccountService accountService
           
protected  CounterLocalService counterLocalService
           
 
Fields inherited from class com.liferay.portal.service.BaseServiceImpl
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
 
Constructor Summary
AccountServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 AccountLocalService getAccountLocalService()
          Returns the account local service.
 AccountPersistence getAccountPersistence()
          Returns the account persistence.
 AccountService getAccountService()
          Returns the account remote service.
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 CounterLocalService getCounterLocalService()
          Returns the counter local service.
protected  Class<?> getModelClass()
           
protected  String getModelClassName()
           
protected  void runSQL(String sql)
          Performs a SQL query.
 void setAccountLocalService(AccountLocalService accountLocalService)
          Sets the account local service.
 void setAccountPersistence(AccountPersistence accountPersistence)
          Sets the account persistence.
 void setAccountService(AccountService accountService)
          Sets the account remote service.
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setCounterLocalService(CounterLocalService counterLocalService)
          Sets the counter local service.
 
Methods inherited from class com.liferay.portal.service.BaseServiceImpl
getClassLoader, getGuestOrUser, getGuestOrUserId, getPermissionChecker, getUser, getUserId
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

accountLocalService

@BeanReference(type=AccountLocalService.class)
protected AccountLocalService accountLocalService

accountService

@BeanReference(type=AccountService.class)
protected AccountService accountService

accountPersistence

@BeanReference(type=AccountPersistence.class)
protected AccountPersistence accountPersistence

counterLocalService

@BeanReference(type=CounterLocalService.class)
protected CounterLocalService counterLocalService
Constructor Detail

AccountServiceBaseImpl

public AccountServiceBaseImpl()
Method Detail

getAccountLocalService

public AccountLocalService getAccountLocalService()
Returns the account local service.

Returns:
the account local service

setAccountLocalService

public void setAccountLocalService(AccountLocalService accountLocalService)
Sets the account local service.

Parameters:
accountLocalService - the account local service

getAccountService

public AccountService getAccountService()
Returns the account remote service.

Returns:
the account remote service

setAccountService

public void setAccountService(AccountService accountService)
Sets the account remote service.

Parameters:
accountService - the account remote service

getAccountPersistence

public AccountPersistence getAccountPersistence()
Returns the account persistence.

Returns:
the account persistence

setAccountPersistence

public void setAccountPersistence(AccountPersistence accountPersistence)
Sets the account persistence.

Parameters:
accountPersistence - the account persistence

getCounterLocalService

public CounterLocalService getCounterLocalService()
Returns the counter local service.

Returns:
the counter local service

setCounterLocalService

public void setCounterLocalService(CounterLocalService counterLocalService)
Sets the counter local service.

Parameters:
counterLocalService - the counter local service

afterPropertiesSet

public void afterPropertiesSet()

destroy

public void destroy()

getBeanIdentifier

public String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Specified by:
getBeanIdentifier in interface IdentifiableBean
Specified by:
getBeanIdentifier in interface AccountService
Returns:
the Spring bean ID for this bean

setBeanIdentifier

public void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Specified by:
setBeanIdentifier in interface IdentifiableBean
Specified by:
setBeanIdentifier in interface AccountService
Parameters:
beanIdentifier - the Spring bean ID for this bean

getModelClass

protected Class<?> getModelClass()

getModelClassName

protected String getModelClassName()

runSQL

protected void runSQL(String sql)
Performs a SQL query.

Parameters:
sql - the sql query

Liferay 7.0-ce-a2