Liferay 7.0-ga1 portal-impl

com.liferay.portal.service.base
Class AccountServiceBaseImpl

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

public abstract class AccountServiceBaseImpl
extends com.liferay.portal.kernel.service.BaseServiceImpl
implements com.liferay.portal.kernel.service.AccountService, com.liferay.portal.kernel.module.framework.service.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
{$generated.description}

Field Summary
protected  com.liferay.portal.kernel.service.AccountLocalService accountLocalService
           
protected  com.liferay.portal.kernel.service.persistence.AccountPersistence accountPersistence
           
protected  com.liferay.portal.kernel.service.AccountService accountService
           
protected  com.liferay.counter.kernel.service.CounterLocalService counterLocalService
           
 
Fields inherited from class com.liferay.portal.kernel.service.BaseServiceImpl
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
 
Constructor Summary
AccountServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 com.liferay.portal.kernel.service.AccountLocalService getAccountLocalService()
          Returns the account local service.
 com.liferay.portal.kernel.service.persistence.AccountPersistence getAccountPersistence()
          Returns the account persistence.
 com.liferay.portal.kernel.service.AccountService getAccountService()
          Returns the account remote service.
 com.liferay.counter.kernel.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(com.liferay.portal.kernel.service.AccountLocalService accountLocalService)
          Sets the account local service.
 void setAccountPersistence(com.liferay.portal.kernel.service.persistence.AccountPersistence accountPersistence)
          Sets the account persistence.
 void setAccountService(com.liferay.portal.kernel.service.AccountService accountService)
          Sets the account remote service.
 void setCounterLocalService(com.liferay.counter.kernel.service.CounterLocalService counterLocalService)
          Sets the counter local service.
 
Methods inherited from class com.liferay.portal.kernel.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=com.liferay.portal.kernel.service.AccountLocalService.class)
protected com.liferay.portal.kernel.service.AccountLocalService accountLocalService

accountService

@BeanReference(type=com.liferay.portal.kernel.service.AccountService.class)
protected com.liferay.portal.kernel.service.AccountService accountService

accountPersistence

@BeanReference(type=com.liferay.portal.kernel.service.persistence.AccountPersistence.class)
protected com.liferay.portal.kernel.service.persistence.AccountPersistence accountPersistence

counterLocalService

@BeanReference(type=com.liferay.counter.kernel.service.CounterLocalService.class)
protected com.liferay.counter.kernel.service.CounterLocalService counterLocalService
Constructor Detail

AccountServiceBaseImpl

public AccountServiceBaseImpl()
Method Detail

getAccountLocalService

public com.liferay.portal.kernel.service.AccountLocalService getAccountLocalService()
Returns the account local service.

Returns:
the account local service

setAccountLocalService

public void setAccountLocalService(com.liferay.portal.kernel.service.AccountLocalService accountLocalService)
Sets the account local service.

Parameters:
accountLocalService - the account local service

getAccountService

public com.liferay.portal.kernel.service.AccountService getAccountService()
Returns the account remote service.

Returns:
the account remote service

setAccountService

public void setAccountService(com.liferay.portal.kernel.service.AccountService accountService)
Sets the account remote service.

Parameters:
accountService - the account remote service

getAccountPersistence

public com.liferay.portal.kernel.service.persistence.AccountPersistence getAccountPersistence()
Returns the account persistence.

Returns:
the account persistence

setAccountPersistence

public void setAccountPersistence(com.liferay.portal.kernel.service.persistence.AccountPersistence accountPersistence)
Sets the account persistence.

Parameters:
accountPersistence - the account persistence

getCounterLocalService

public com.liferay.counter.kernel.service.CounterLocalService getCounterLocalService()
Returns the counter local service.

Returns:
the counter local service

setCounterLocalService

public void setCounterLocalService(com.liferay.counter.kernel.service.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 com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService
Specified by:
getOSGiServiceIdentifier in interface com.liferay.portal.kernel.service.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-ga1 portal-impl