Liferay 7.0-ce-b4

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:
IdentifiableOSGiService, AccountService, BaseService
Direct Known Subclasses:
AccountServiceImpl

public abstract class AccountServiceBaseImpl
extends BaseServiceImpl
implements AccountService, IdentifiableOSGiService

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.
 CounterLocalService getCounterLocalService()
          Returns the counter local service.
protected  Class<?> getModelClass()
           
protected  String getModelClassName()
           
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
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 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()

getOSGiServiceIdentifier

public String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Specified by:
getOSGiServiceIdentifier in interface IdentifiableOSGiService
Specified by:
getOSGiServiceIdentifier in interface AccountService
Returns:
the OSGi service identifier

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-b4