Liferay 7.0-ce-m3

com.liferay.portlet.dynamicdatamapping.service.base
Class DDMTemplateVersionServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.service.BaseServiceImpl
      extended by com.liferay.portlet.dynamicdatamapping.service.base.DDMTemplateVersionServiceBaseImpl
All Implemented Interfaces:
IdentifiableBean, BaseService, DDMTemplateVersionService
Direct Known Subclasses:
DDMTemplateVersionServiceImpl

public abstract class DDMTemplateVersionServiceBaseImpl
extends BaseServiceImpl
implements DDMTemplateVersionService, IdentifiableBean

Provides the base implementation for the d d m template 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 DDMTemplateVersionServiceImpl.

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

Field Summary
protected  CounterLocalService counterLocalService
           
protected  DDMTemplateVersionLocalService ddmTemplateVersionLocalService
           
protected  DDMTemplateVersionPersistence ddmTemplateVersionPersistence
           
protected  DDMTemplateVersionService ddmTemplateVersionService
           
 
Fields inherited from class com.liferay.portal.service.BaseServiceImpl
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
 
Constructor Summary
DDMTemplateVersionServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 CounterLocalService getCounterLocalService()
          Returns the counter local service.
 DDMTemplateVersionLocalService getDDMTemplateVersionLocalService()
          Returns the d d m template version local service.
 DDMTemplateVersionPersistence getDDMTemplateVersionPersistence()
          Returns the d d m template version persistence.
 DDMTemplateVersionService getDDMTemplateVersionService()
          Returns the d d m template 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 setDDMTemplateVersionLocalService(DDMTemplateVersionLocalService ddmTemplateVersionLocalService)
          Sets the d d m template version local service.
 void setDDMTemplateVersionPersistence(DDMTemplateVersionPersistence ddmTemplateVersionPersistence)
          Sets the d d m template version persistence.
 void setDDMTemplateVersionService(DDMTemplateVersionService ddmTemplateVersionService)
          Sets the d d m template 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.dynamicdatamapping.service.DDMTemplateVersionService
getLatestTemplateVersion, getTemplateVersion, getTemplateVersions, getTemplateVersionsCount
 

Field Detail

ddmTemplateVersionLocalService

@BeanReference(type=DDMTemplateVersionLocalService.class)
protected DDMTemplateVersionLocalService ddmTemplateVersionLocalService

ddmTemplateVersionService

@BeanReference(type=DDMTemplateVersionService.class)
protected DDMTemplateVersionService ddmTemplateVersionService

ddmTemplateVersionPersistence

@BeanReference(type=DDMTemplateVersionPersistence.class)
protected DDMTemplateVersionPersistence ddmTemplateVersionPersistence

counterLocalService

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

DDMTemplateVersionServiceBaseImpl

public DDMTemplateVersionServiceBaseImpl()
Method Detail

getDDMTemplateVersionLocalService

public DDMTemplateVersionLocalService getDDMTemplateVersionLocalService()
Returns the d d m template version local service.

Returns:
the d d m template version local service

setDDMTemplateVersionLocalService

public void setDDMTemplateVersionLocalService(DDMTemplateVersionLocalService ddmTemplateVersionLocalService)
Sets the d d m template version local service.

Parameters:
ddmTemplateVersionLocalService - the d d m template version local service

getDDMTemplateVersionService

public DDMTemplateVersionService getDDMTemplateVersionService()
Returns the d d m template version remote service.

Returns:
the d d m template version remote service

setDDMTemplateVersionService

public void setDDMTemplateVersionService(DDMTemplateVersionService ddmTemplateVersionService)
Sets the d d m template version remote service.

Parameters:
ddmTemplateVersionService - the d d m template version remote service

getDDMTemplateVersionPersistence

public DDMTemplateVersionPersistence getDDMTemplateVersionPersistence()
Returns the d d m template version persistence.

Returns:
the d d m template version persistence

setDDMTemplateVersionPersistence

public void setDDMTemplateVersionPersistence(DDMTemplateVersionPersistence ddmTemplateVersionPersistence)
Sets the d d m template version persistence.

Parameters:
ddmTemplateVersionPersistence - the d d m template 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 DDMTemplateVersionService
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 DDMTemplateVersionService
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