Liferay 7.0-ce-m3

com.liferay.portlet.dynamicdatalists.service.base
Class DDLRecordVersionServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.service.BaseServiceImpl
      extended by com.liferay.portlet.dynamicdatalists.service.base.DDLRecordVersionServiceBaseImpl
All Implemented Interfaces:
IdentifiableBean, BaseService, DDLRecordVersionService
Direct Known Subclasses:
DDLRecordVersionServiceImpl

public abstract class DDLRecordVersionServiceBaseImpl
extends BaseServiceImpl
implements DDLRecordVersionService, IdentifiableBean

Provides the base implementation for the d d l record version 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 DDLRecordVersionServiceImpl.

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

Field Summary
protected  CounterLocalService counterLocalService
           
protected  DDLRecordVersionLocalService ddlRecordVersionLocalService
           
protected  DDLRecordVersionPersistence ddlRecordVersionPersistence
           
protected  DDLRecordVersionService ddlRecordVersionService
           
 
Fields inherited from class com.liferay.portal.service.BaseServiceImpl
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
 
Constructor Summary
DDLRecordVersionServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 CounterLocalService getCounterLocalService()
          Returns the counter local service.
 DDLRecordVersionLocalService getDDLRecordVersionLocalService()
          Returns the d d l record version local service.
 DDLRecordVersionPersistence getDDLRecordVersionPersistence()
          Returns the d d l record version persistence.
 DDLRecordVersionService getDDLRecordVersionService()
          Returns the d d l record version remote service.
protected  Class<?> getModelClass()
           
protected  String getModelClassName()
           
protected  void runSQL(String sql)
          Performs a SQL query.
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setCounterLocalService(CounterLocalService counterLocalService)
          Sets the counter local service.
 void setDDLRecordVersionLocalService(DDLRecordVersionLocalService ddlRecordVersionLocalService)
          Sets the d d l record version local service.
 void setDDLRecordVersionPersistence(DDLRecordVersionPersistence ddlRecordVersionPersistence)
          Sets the d d l record version persistence.
 void setDDLRecordVersionService(DDLRecordVersionService ddlRecordVersionService)
          Sets the d d l record version remote 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
 
Methods inherited from interface com.liferay.portlet.dynamicdatalists.service.DDLRecordVersionService
getRecordVersion, getRecordVersion, getRecordVersions, getRecordVersionsCount
 

Field Detail

ddlRecordVersionLocalService

@BeanReference(type=DDLRecordVersionLocalService.class)
protected DDLRecordVersionLocalService ddlRecordVersionLocalService

ddlRecordVersionService

@BeanReference(type=DDLRecordVersionService.class)
protected DDLRecordVersionService ddlRecordVersionService

ddlRecordVersionPersistence

@BeanReference(type=DDLRecordVersionPersistence.class)
protected DDLRecordVersionPersistence ddlRecordVersionPersistence

counterLocalService

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

DDLRecordVersionServiceBaseImpl

public DDLRecordVersionServiceBaseImpl()
Method Detail

getDDLRecordVersionLocalService

public DDLRecordVersionLocalService getDDLRecordVersionLocalService()
Returns the d d l record version local service.

Returns:
the d d l record version local service

setDDLRecordVersionLocalService

public void setDDLRecordVersionLocalService(DDLRecordVersionLocalService ddlRecordVersionLocalService)
Sets the d d l record version local service.

Parameters:
ddlRecordVersionLocalService - the d d l record version local service

getDDLRecordVersionService

public DDLRecordVersionService getDDLRecordVersionService()
Returns the d d l record version remote service.

Returns:
the d d l record version remote service

setDDLRecordVersionService

public void setDDLRecordVersionService(DDLRecordVersionService ddlRecordVersionService)
Sets the d d l record version remote service.

Parameters:
ddlRecordVersionService - the d d l record version remote service

getDDLRecordVersionPersistence

public DDLRecordVersionPersistence getDDLRecordVersionPersistence()
Returns the d d l record version persistence.

Returns:
the d d l record version persistence

setDDLRecordVersionPersistence

public void setDDLRecordVersionPersistence(DDLRecordVersionPersistence ddlRecordVersionPersistence)
Sets the d d l record version persistence.

Parameters:
ddlRecordVersionPersistence - the d d l record version 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 DDLRecordVersionService
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 DDLRecordVersionService
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-m3